e32afb6fea
first component is now a package name+version/pattern, no more executable/patchname/whatnot. While there, introduce BUILD_USES_MSGFMT as shorthand to pull in devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current). Patch by Alistair Crooks <agc@netbsd.org>
64 lines
1.7 KiB
Makefile
64 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.36 2001/03/27 03:20:13 hubertf Exp $
|
|
# Based on KAME Id: Makefile,v 1.1.2.1.2.1.10.2 1999/01/05 11:03:50 itojun Exp
|
|
#
|
|
|
|
DISTNAME= zebra-0.91a
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/
|
|
# you might need debugging, it's a developer release !
|
|
#CFLAGS+= -g
|
|
|
|
MAINTAINER= itojun@itojun.org
|
|
HOMEPAGE= http://www.zebra.org/
|
|
COMMENT= Free multithreaded routing daemon software
|
|
|
|
BUILD_DEPENDS+= automake-1.4:../../devel/automake
|
|
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# libedit does not work due to missing functions.
|
|
.if defined(USE_ZEBRA_VTYSH) && ${USE_ZEBRA_VTYSH} == "YES"
|
|
DEPENDS+= readline-*:../../devel/readline
|
|
CONFIGURE_ARGS+=--enable-vtysh
|
|
CONFIGURE_ENV+= LIBS=-L${LOCALBASE}/lib CPPFLAGS=-I${LOCALBASE}/include
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-vtysh
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--sysconfdir=/etc/zebra
|
|
USE_GTEXINFO= yes
|
|
USE_GMAKE= yes
|
|
|
|
BUILD_DEFS+= USE_INET6
|
|
|
|
.if defined(USE_INET6) && ${USE_INET6} == YES
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd
|
|
.endif
|
|
PLIST_SRC= ${WRKDIR}/PLIST
|
|
|
|
post-patch:
|
|
${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
|
|
.if defined(USE_INET6) && ${USE_INET6} == YES
|
|
${CAT} ${PKGDIR}/PLIST.v6 >> ${PLIST_SRC}
|
|
.endif
|
|
.if defined(USE_ZEBRA_VTYSH) && ${USE_ZEBRA_VTYSH} == "YES"
|
|
${CAT} ${PKGDIR}/PLIST.vtysh >> ${PLIST_SRC}
|
|
.endif
|
|
${ECHO} '@dirrm share/examples/zebra' >>${PLIST_SRC}
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf
|
|
# cd ${WRKSRC} && ${LOCALBASE}/bin/automake
|
|
|
|
#post-build:
|
|
# cd ${WRKSRC}/doc ; \
|
|
# ${TOUCH} zebra.texi ; \
|
|
# makeinfo --no-split zebra.texi
|
|
|
|
post-install:
|
|
@${CHMOD} a+r ${PREFIX}/share/examples/zebra/*
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|