freebsd-ports/devel/uclmmbase/Makefile
Baptiste Daroussin 0eaca3a3be Support stage
Use options framework
Simplify a bit port
2014-02-06 22:53:58 +00:00

37 lines
1,015 B
Makefile

# Created by: Garrett Wollman <wollman@lcs.mit.edu>
# $FreeBSD$
PORTNAME= uclmmbase
PORTVERSION= 1.2.18
CATEGORIES= devel ipv6
MASTER_SITES= http://aldan.algebra.com/~mi/port-stuff/
DISTNAME= common-${PORTVERSION}
MAINTAINER= mi@aldan.algebra.com
COMMENT= Common subroutines for UCL mbone applications
OPTIONS_DEFINE= IPV6
WRKSRC= ${WRKDIR}/common
USES= uidfix
GNU_CONFIGURE= yes
USE_OPENSSL= yes
IPV6_CONFIGURE_ENABLE= ipv6
USE_XZ= yes
MAKE_ENV= WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null
INSTALL_WRKSRC= ${WRKSRC}/src
post-configure:
@for f in ${FILESDIR}/*.bsd ; do \
${LN} -sf $$f ${WRKSRC}/src/`${BASENAME} $$f .bsd` ; \
done
# Run the test, and fail if we hit an error. Don't fail in case of
# the networking-error, which may be due IPv6 (or IPv4) being unavailable
# or some network (mis)configuration:
post-build test:
cd ${WRKSRC} && tests/test-libcommon 2>&1 | ${AWK} ' \
/fail$$/ && $$2 != "networking" { code=1 } \
{ print } END { exit code }'
.include <bsd.port.mk>