diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-07-14 16:23:04 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2014-07-14 16:23:04 +0000 |
commit | 2251039fcafead01029d2ce60d85ddc89aa6fea4 (patch) | |
tree | 11efd23ecce90fd9eb625ac683777cdb5c1e4e0d | |
parent | Unbreak. (diff) |
- Add LICENSE
- Fix LN in post-install:
- Convert to new options helper
- Remove unnecessary MASTER_SITE_SUBDIR and SVER
- Silence post-patch:
- Simplify Makefile
- Cosmetic change
- Update pkg-descr and WWW
- Take maintainership
Notes
Notes:
svn path=/head/; revision=361798
-rw-r--r-- | net/libnet/Makefile | 61 | ||||
-rw-r--r-- | net/libnet/pkg-descr | 5 |
2 files changed, 27 insertions, 39 deletions
diff --git a/net/libnet/Makefile b/net/libnet/Makefile index e97c7669458c..ab769e385260 100644 --- a/net/libnet/Makefile +++ b/net/libnet/Makefile @@ -7,65 +7,54 @@ PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net MASTER_SITES= SF/libnet-dev -MASTER_SITE_SUBDIR= distfiles -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= C library for creating IP packets -USES= libtool -USE_LDCONFIG= yes -USE_CSTD= gnu89 +LICENSE= BSD2CLAUSE + +OPTIONS_DEFINE= BPF DOCS EXAMPLES +OPTIONS_DEFAULT=BPF +BPF_DESC= link layer bpf + GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-link-layer=${LIBNET_LINK} INSTALL_TARGET= install-strip +USE_CSTD= gnu89 +USE_LDCONFIG= yes +USES= libtool -SHORT_VER= 11 -SHORT_NAME= ${PORTNAME}${SHORT_VER} +SHORT_NAME= ${PORTNAME}11 DOCSDIR= ${PREFIX}/share/doc/${SHORT_NAME} EXAMPLESDIR= ${PREFIX}/share/examples/${SHORT_NAME} USE_LDCONFIG= ${PREFIX}/lib/${SHORT_NAME} -PLIST_SUB= SVER=${SHORT_VER} SNAME=${SHORT_NAME} VERSION=${PORTVERSION} +PLIST_SUB= SNAME=${SHORT_NAME} VERSION=${PORTVERSION} DOCS= README doc/CHANGELOG doc/CONTRIB doc/COPYING \ doc/DESIGN_NOTES doc/MIGRATION doc/PACKET_BUILDING doc/PORTED \ doc/RAWSOCKET_NON_SEQUITUR doc/TODO EXAMPLES= sample/*.c -OPTIONS_DEFINE= EXAMPLES DOCS BPF -OPTIONS_DEFAULT= BPF -BPF_DESC= link layer bpf - -.include <bsd.port.options.mk> - -LIBNET_LINK= none - -.if ${PORT_OPTIONS:MBPF} -LIBNET_LINK= bpf -.endif +BPF_CONFIGURE_OFF= --with-link-layer=none +BPF_CONFIGURE_ON= --with-link-layer=bpf post-patch: - ${REINPLACE_CMD} \ - -e 's|@LIBNET_CONFIG_LIBS@|@LIBNET_CONFIG_LIBS@ -L@prefix@/lib/${SHORT_NAME}|' \ - -e 's|@LIBNET_CONFIG_CFLAGS@|@LIBNET_CONFIG_CFLAGS@ -I@prefix@/include/${SHORT_NAME}|' \ - ${WRKSRC}/libnet-config.in - ${REINPLACE_CMD} -e 's|^includedir =.*|includedir = @includedir@/${SHORT_NAME}|' \ + @${REINPLACE_CMD} \ + -e 's|@LIBNET_CONFIG_LIBS@|@LIBNET_CONFIG_LIBS@ -L@prefix@/lib/${SHORT_NAME}|' \ + -e 's|@LIBNET_CONFIG_CFLAGS@|@LIBNET_CONFIG_CFLAGS@ -I@prefix@/include/${SHORT_NAME}|' \ + ${WRKSRC}/libnet-config.in + @${REINPLACE_CMD} -e 's|^includedir =.*|includedir = @includedir@/${SHORT_NAME}|' \ ${WRKSRC}/include/Makefile.in \ ${WRKSRC}/include/libnet/Makefile.in - ${REINPLACE_CMD} -e 's|^libdir =.*|libdir = @libdir@/${SHORT_NAME}|' \ + @${REINPLACE_CMD} -e 's|^libdir =.*|libdir = @libdir@/${SHORT_NAME}|' \ -e 's|^libnet_la_LDFLAGS =\(.*\)|libnet_la_LDFLAGS =\1 -soname=libnet-${SHORT_NAME}.so.1|' \ ${WRKSRC}/src/Makefile.in post-install: ${INSTALL_SCRIPT} ${WRKSRC}/libnet-config ${STAGEDIR}${PREFIX}/bin/${SHORT_NAME}-config - @cd ${STAGEDIR}${PREFIX}/lib && \ - ${LN} -sf ${SHORT_NAME}/libnet-${PORTVERSION}.so.1 -.if ${PORT_OPTIONS:MEXAMPLES} - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ -.endif -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${STAGEDIR}${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/ -.endif + ${LN} -fs ${SHORT_NAME}/libnet.so.1 ${STAGEDIR}${PREFIX}/lib/libnet-${PORTVERSION}.so.1 + ${MKDIR} ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}/ + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ${EXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ .include <bsd.port.mk> diff --git a/net/libnet/pkg-descr b/net/libnet/pkg-descr index 21f93f020e58..83bff24bd48f 100644 --- a/net/libnet/pkg-descr +++ b/net/libnet/pkg-descr @@ -14,6 +14,5 @@ Using libnet, quick and simple packet assembly applications can be whipped up with little effort. With a bit more time, more complex programs can be written (Traceroute and ping were easily rewritten using libnet and libpcap). -Libnet is distributed under the BSD license. - -WWW: http://www.packetfactory.net/projects/libnet/ +WWW: http://sourceforge.net/projects/libnet-dev/ +WWW: https://github.com/sam-github/libnet |