- 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
This commit is contained in:
parent
bf001e85f4
commit
2251039fca
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=361798
2 changed files with 29 additions and 41 deletions
|
@ -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
|
||||
GNU_CONFIGURE= yes
|
||||
CONFIGURE_ARGS= --with-link-layer=${LIBNET_LINK}
|
||||
INSTALL_TARGET= install-strip
|
||||
LICENSE= BSD2CLAUSE
|
||||
|
||||
SHORT_VER= 11
|
||||
SHORT_NAME= ${PORTNAME}${SHORT_VER}
|
||||
OPTIONS_DEFINE= BPF DOCS EXAMPLES
|
||||
OPTIONS_DEFAULT=BPF
|
||||
BPF_DESC= link layer bpf
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
INSTALL_TARGET= install-strip
|
||||
USE_CSTD= gnu89
|
||||
USE_LDCONFIG= yes
|
||||
USES= libtool
|
||||
|
||||
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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue