mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
e1c4707bab
- move 1.0 obsoleted version to net/libnet10 net/libnet is latest Stable Version net/libnet is latest Beta Version - Fix all depended ports with a new DEPENDS scheme - While I'm here fix security/yersinia build on 4.x (getopt_long and ncurses issues) PR: ports/85519 (based on) Submitted by: Stas Yakovlev <stas.yakovlev_at_gmail.com>
40 lines
971 B
Makefile
40 lines
971 B
Makefile
# Ports collection makefile for: libnet
|
|
# Date created: Sun Feb 3, 1999
|
|
# Whom: shipley@dis.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libnet
|
|
PORTVERSION= 1.1.2.1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.packetfactory.net/libnet/dist/
|
|
|
|
MAINTAINER= shipley@dis.org
|
|
COMMENT= A C library for creating IP packets
|
|
|
|
CONFLICTS= libnet-devel-1.1.*\
|
|
libnet10-1.0.*
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
DOCS= README doc/BUGS doc/CHANGELOG doc/CONTRIB doc/COPYING \
|
|
doc/DESIGN_NOTES doc/MIGRATION doc/PACKET_BUILDING doc/PORTED \
|
|
doc/RAWSOCKET_NON_SEQUITUR doc/TODO doc/html/*
|
|
EXAMPLES= sample/*.c
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/libnet-config ${PREFIX}/bin
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|