blob: a78620969ea027350872bd67388f6239ebe0eb82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# $NetBSD: Makefile,v 1.35 2001/03/09 12:55:48 itojun 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+= ${LOCALBASE}/bin/automake:../../devel/automake
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../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"
|