789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# Ports collection makefile for: libnet-devel
|
|
# Date created: Jan 7, 2003
|
|
# Whom: smace@freebsd.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libnet
|
|
PORTVERSION= 1.1.3.r1
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.packetfactory.net/libnet/dist/
|
|
PKGNAMESUFFIX= ${SHORT_VER}-devel
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/.r1$//}-RC-01
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A C library for creating IP packets (development version)
|
|
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${SHORT_VER}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME}${SHORT_VER}
|
|
|
|
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
|
|
EXAMPLES= sample/*.c
|
|
|
|
SHORT_VER= 113
|
|
|
|
USE_LDCONFIG= ${PREFIX}/lib/libnet${SHORT_VER}
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/libnet-config \
|
|
${PREFIX}/bin/libnet${SHORT_VER}-config
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${EXAMPLES} ${EXAMPLESDIR}
|
|
@cd ${PREFIX}/lib && \
|
|
${LN} -sf libnet${SHORT_VER}/libnet.so libnet-1.1.3.so.1 && \
|
|
${LN} -sf libnet-1.1.3.so.1 libnet-1.1.3.so
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|