From ac07368bd41fab23ee5e49dae5828b2a841afee0 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Sat, 17 Dec 2005 16:49:18 +0000 Subject: [PATCH] Added macchanger SVN-Revision: 2712 --- openwrt/package/Config.in | 1 + openwrt/package/Makefile | 1 + openwrt/package/macchanger/Config.in | 8 +++ openwrt/package/macchanger/Makefile | 50 +++++++++++++++++++ .../macchanger/ipkg/macchanger.control | 6 +++ 5 files changed, 66 insertions(+) create mode 100755 openwrt/package/macchanger/Config.in create mode 100755 openwrt/package/macchanger/Makefile create mode 100755 openwrt/package/macchanger/ipkg/macchanger.control diff --git a/openwrt/package/Config.in b/openwrt/package/Config.in index 9cab42c184..21316ea754 100644 --- a/openwrt/package/Config.in +++ b/openwrt/package/Config.in @@ -81,6 +81,7 @@ source "package/l2tpd/Config.in" source "package/l2tpns/Config.in" source "package/lighttpd/Config.in" source "package/linux-atm/Config.in" +source "package/macchanger/Config.in" source "package/maradns/Config.in" source "package/mini_httpd/Config.in" source "package/mini_sendmail/Config.in" diff --git a/openwrt/package/Makefile b/openwrt/package/Makefile index 7c8e525db8..548f002bff 100644 --- a/openwrt/package/Makefile +++ b/openwrt/package/Makefile @@ -110,6 +110,7 @@ package-$(BR2_PACKAGE_LIBXSLT) += libxslt package-$(BR2_PACKAGE_LIGHTTPD) += lighttpd package-$(BR2_PACKAGE_LINUX_ATM) += linux-atm package-$(BR2_COMPILE_LUA) += lua +package-$(BR2_PACKAGE_MACCHANGER) += macchanger package-$(BR2_PACKAGE_MADPLAY) += madplay package-$(BR2_PACKAGE_MADWIFI_TOOLS) += madwifi-tools package-$(BR2_PACKAGE_MARADNS) += maradns diff --git a/openwrt/package/macchanger/Config.in b/openwrt/package/macchanger/Config.in new file mode 100755 index 0000000000..a975e4adba --- /dev/null +++ b/openwrt/package/macchanger/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_MACCHANGER + tristate "macchanger........................ utility for viewing/manipulating the MAC address" + default m if CONFIG_DEVEL + help + This is a GNU/Linux utility for viewing/manipulating the MAC address + of network interfaces. + + http://www.gnu.org/software/macchanger diff --git a/openwrt/package/macchanger/Makefile b/openwrt/package/macchanger/Makefile new file mode 100755 index 0000000000..2081c92a94 --- /dev/null +++ b/openwrt/package/macchanger/Makefile @@ -0,0 +1,50 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=macchanger +PKG_VERSION:=1.5.0 +PKG_RELEASE:=1 +PKG_MD5SUM:=79b7cdaeca3d8ebafa764c4b0dd03ab7 +PKG_SOURCE_URL:=@gnu/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_CAT:=zcat + +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,MACCHANGER,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + (cd $(PKG_BUILD_DIR); rm -rf config.cache; \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --sbindir=/usr/sbin \ + --libexecdir=/usr/lib \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --localstatedir=/var \ + --mandir=/usr/man \ + --mandir=/usr/man \ + --infodir=/usr/info \ + --program-prefix="" \ + --with-gnu-ld \ + ); + touch $@ + +$(PKG_BUILD_DIR)/.built: + $(MAKE) DESTDIR=$(PKG_INSTALL_DIR) -C $(PKG_BUILD_DIR) install + touch $@ + +$(IPKG_MACCHANGER): + mkdir -p $(IDIR_MACCHANGER) + cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_MACCHANGER)/ + $(RSTRIP) $(IDIR_MACCHANGER) + $(IPKG_BUILD) $(IDIR_MACCHANGER) $(PACKAGE_DIR) diff --git a/openwrt/package/macchanger/ipkg/macchanger.control b/openwrt/package/macchanger/ipkg/macchanger.control new file mode 100755 index 0000000000..9149cc32f1 --- /dev/null +++ b/openwrt/package/macchanger/ipkg/macchanger.control @@ -0,0 +1,6 @@ +Package: macchanger +Section: sys +Architecture: mipsel +Priority: optional +Description: This is a GNU/Linux utility for viewing/manipulating the MAC address +of network interfaces. -- 2.30.2