diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-30 23:18:13 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-30 23:18:13 +0000 |
commit | 4b818ff979d79737ad5f27ea561458deffd4bb96 (patch) | |
tree | dee84794abc35bf699c202046229a59719bee216 /openwrt/package/libnet/ipkg | |
parent | 8954084ce3b95cbdf68ca7a03c720101552b8c3d (diff) |
Add libnet package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@490 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/libnet/ipkg')
-rw-r--r-- | openwrt/package/libnet/ipkg/libnet-dev/CONTROL/control | 8 | ||||
-rw-r--r-- | openwrt/package/libnet/ipkg/libnet/CONTROL/control | 9 | ||||
-rw-r--r-- | openwrt/package/libnet/ipkg/rules | 147 | ||||
-rw-r--r-- | openwrt/package/libnet/ipkg/version | 1 |
4 files changed, 165 insertions, 0 deletions
diff --git a/openwrt/package/libnet/ipkg/libnet-dev/CONTROL/control b/openwrt/package/libnet/ipkg/libnet-dev/CONTROL/control new file mode 100644 index 0000000000..06b23865b3 --- /dev/null +++ b/openwrt/package/libnet/ipkg/libnet-dev/CONTROL/control @@ -0,0 +1,8 @@ +Package: libnet-dev +Priority: optional +Section: devel +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/libnet/ +Description: a low-level packet creation library (development) diff --git a/openwrt/package/libnet/ipkg/libnet/CONTROL/control b/openwrt/package/libnet/ipkg/libnet/CONTROL/control new file mode 100644 index 0000000000..9b2e53973e --- /dev/null +++ b/openwrt/package/libnet/ipkg/libnet/CONTROL/control @@ -0,0 +1,9 @@ +Package: libnet +Priority: optional +Section: libs +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico <nthill@free.fr> +Source: http://nthill.free.fr/openwrt/sources/libnet/ +Description: a low-level packet creation library +Depends: libpcap diff --git a/openwrt/package/libnet/ipkg/rules b/openwrt/package/libnet/ipkg/rules new file mode 100644 index 0000000000..6bc215c1bd --- /dev/null +++ b/openwrt/package/libnet/ipkg/rules @@ -0,0 +1,147 @@ +#!/usr/bin/make -f + +ifneq ($(strip ${IPKG_RULES_INC}),) + include $(IPKG_RULES_INC) +endif + +## + +PKG_VERSION := $(shell cat ./ipkg/version) +CURRENT_DIR := $(shell pwd) +INSTALL_DIR ?= $(CURRENT_DIR)/ipkg-install + +unexport INSTALL_DIR + +I_LIBNET := ipkg/libnet +I_LIBNET_DEV := ipkg/libnet-dev + +BUILD_DEPS := \ + $(STAGING_DIR)/usr/include/pcap.h \ + +CONFIGURE_OPTS = \ + --enable-shared \ + --enable-static \ + --with-pf_packet=yes \ + +## + +all: package + + +.stamp-configured: $(BUILD_DEPS) + + touch configure.in + touch include.m4 + touch aclocal.m4 + touch Makefile.in + touch configure + + rm -rf config.cache + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ + ac_libnet_have_pf_packet=yes \ + ac_cv_lbl_unaligned_fail=no \ + ac_cv_libnet_endianess=lil \ + ./configure \ + --target=$(GNU_TARGET_NAME) \ + --host=$(GNU_TARGET_NAME) \ + --build=$(GNU_HOST_NAME) \ + --program-prefix="" \ + --program-suffix="" \ + --prefix=/usr \ + --exec-prefix=/usr \ + --bindir=/usr/bin \ + --datadir=/usr/share \ + --includedir=/usr/include \ + --infodir=/usr/share/info \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --mandir=/usr/share/man \ + --sbindir=/usr/sbin \ + --sysconfdir=/etc \ + $(DISABLE_LARGEFILE) \ + $(DISABLE_NLS) \ + $(CONFIGURE_OPTS) \ + + touch config.guess + touch config.sub + + touch .stamp-configured + + +.stamp-built: .stamp-configured + + $(MAKE) \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" \ + + touch .stamp-built + + +$(INSTALL_DIR)/usr/include/libnet.h: .stamp-built + + mkdir -p $(INSTALL_DIR) + + $(MAKE) \ + DESTDIR="$(INSTALL_DIR)" \ + install + + +configure: .stamp-configured + + +build: .stamp-built + + +install: $(INSTALL_DIR)/usr/include/libnet.h + + +package: $(INSTALL_DIR)/usr/include/libnet.h + + mkdir -p $(I_LIBNET)/usr/lib + cp -fpR $(INSTALL_DIR)/usr/lib/libnet.so.* $(I_LIBNET)/usr/lib/ + $(STRIP) $(I_LIBNET)/usr/lib/libnet.so.* + + mkdir -p $(I_LIBNET_DEV)/usr/bin + cp -fpR $(INSTALL_DIR)/usr/bin/libnet-config $(I_LIBNET_DEV)/usr/bin/ + mkdir -p $(I_LIBNET_DEV)/usr/include + cp -fpR $(INSTALL_DIR)/usr/include/libnet.h $(I_LIBNET_DEV)/usr/include/ + cp -fpR $(INSTALL_DIR)/usr/include/libnet $(I_LIBNET_DEV)/usr/include/ + mkdir -p $(I_LIBNET_DEV)/usr/lib + cp -fpR $(INSTALL_DIR)/usr/lib/libnet.a $(I_LIBNET_DEV)/usr/lib/ + cp -fpR $(INSTALL_DIR)/usr/lib/libnet.so* $(I_LIBNET_DEV)/usr/lib/ + + chmod 0755 ipkg/*/CONTROL/ + chmod 0644 ipkg/*/CONTROL/control + + perl -pi -e "s/^Arch.*:.*/Architecture: $(ARCH)/g" ipkg/*/CONTROL/control +ifneq ($(strip $(PKG_VERSION)),) + perl -pi -e "s/^Vers.*:.*/Version: $(PKG_VERSION)/g" ipkg/*/CONTROL/control +endif + + $(IPKG_BUILD) $(I_LIBNET) $(IPKG_TARGET_DIR) + $(IPKG_BUILD) $(I_LIBNET_DEV) $(IPKG_TARGET_DIR) + + +clean: + + -$(MAKE) \ + DESTDIR="$(INSTALL_DIR)" \ + uninstall clean + + rm -rf .stamp-* \ + $(I_LIBNET)/usr \ + $(I_LIBNET_DEV)/usr \ + + +control: + + @cat $(I_LIBNET)/CONTROL/control + @echo + @cat $(I_LIBNET_DEV)/CONTROL/control + @echo + + +.PHONY: configure build install package clean control diff --git a/openwrt/package/libnet/ipkg/version b/openwrt/package/libnet/ipkg/version new file mode 100644 index 0000000000..afe6924cdb --- /dev/null +++ b/openwrt/package/libnet/ipkg/version @@ -0,0 +1 @@ +1.0.2a-7 |