summaryrefslogtreecommitdiff
path: root/package/libnet/Makefile
diff options
context:
space:
mode:
authorwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
committerwbx <wbx@hydrogenium.(none)>2009-05-17 14:41:34 +0200
commit219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch)
treeb9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/libnet/Makefile
Initial import
Diffstat (limited to 'package/libnet/Makefile')
-rw-r--r--package/libnet/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/package/libnet/Makefile b/package/libnet/Makefile
new file mode 100644
index 000000000..bc3a13b97
--- /dev/null
+++ b/package/libnet/Makefile
@@ -0,0 +1,36 @@
+# $Id$
+#-
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= libnet
+PKG_VERSION:= 1.0.2a
+PKG_RELEASE:= 7
+PKG_MD5SUM:= ddf53f0f484184390e8c2a1bd0853667
+MASTER_SITES:= http://www.packetfactory.net/libnet/dist/deprecated/
+WRKDIST= ${WRKDIR}/Libnet-${PKG_VERSION}
+
+include ${TOPDIR}/mk/package.mk
+
+ENDIAN:=lil
+ifeq (${ARCH},mips)
+ENDIAN:=big
+endif
+
+$(eval $(call PKG_template,LIBNET,libnet,${PKG_VERSION}-${PKG_RELEASE},${ARCH}))
+
+CONFIGURE_STYLE= gnu
+CONFIGURE_ENV+= ac_libnet_have_pf_packet=yes \
+ ac_cv_lbl_unaligned_fail=no \
+ ac_cv_libnet_endianess=${ENDIAN}
+CONFIGURE_ARGS+= --with-pf_packet=yes
+BUILD_STYLE= auto
+INSTALL_STYLE= auto
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_LIBNET}/usr/lib
+ ${CP} ${WRKINST}/usr/lib/libnet.so.* ${IDIR_LIBNET}/usr/lib/
+
+include ${TOPDIR}/mk/pkg-bottom.mk