freebsd-ports/net/libdnet/Makefile
Marcelo Araujo 88bb05e262 - Unbreak jail builds (bpf0 has been here since 3.x).
- Use SF macro.

PR:		ports/125001
Submitted by:	"Philip M. Gollucci" <pgollucci@p6m7g8.com>
Approved by:	"Jonatan B" <onatan@gmail.com> (maintainer)
2008-07-04 00:44:12 +00:00

44 lines
1.1 KiB
Makefile

# New ports collection makefile for: libdnet
# Date created: 15 April 2002
# Whom: Dominic Marks <dominic.marks@btinternet.com>
#
# $FreeBSD$
#
PORTNAME= libdnet
PORTVERSION= 1.11
PORTREVISION?= 2
CATEGORIES?= net
MASTER_SITES= SF
MAINTAINER?= onatan@gmail.com
COMMENT= A simple interface to low level networking routines
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
USE_GMAKE= yes
.if !defined(LIBDNET_SLAVE)
CONFIGURE_ARGS+= --without-python
USE_LDCONFIG= yes
MAN3= dnet.3
MAN8= dnet.8
.endif
.include <bsd.port.pre.mk>
.if !defined(LIBDNET_SLAVE)
post-patch:
@${REINPLACE_CMD} -e 's|echo aout|echo elf|' ${WRKSRC}/configure
post-build:
@cd ${WRKSRC}/src ; ${CC} ${CFLAGS} -shared -o libdnet.so .libs/addr-util.o .libs/addr.o .libs/blob.o .libs/ip-util.o .libs/ip6.o .libs/rand.o .libs/arp-bsd.o .libs/eth-bsd.o .libs/fw-pf.o .libs/intf.o .libs/ip.o .libs/route-bsd.o .libs/tun-bsd.o
post-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME}.so ${PREFIX}/lib/
@${LN} ${PREFIX}/lib/${PORTNAME}.so ${PREFIX}/lib/${PORTNAME}.so.1
.endif
.include <bsd.port.post.mk>