blob: c6bb67cadd279d00f175fc54f8e27f1e71807e42 (
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
|
# New ports collection makefile for: zebra
# Version required: 0.71
# Date created: So 31 Mai 1998 11:00:30 CEST
# Whom: Andreas Klemm <andreas@klemm.gtn.com> (FreeBSD)
# itojun@itojun.org
#
# $NetBSD: Makefile,v 1.6 1999/07/07 08:54:55 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.71
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/
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=--sysconfdir=${PREFIX}/etc/zebra
.if !defined(USE_INET6)
CONFIGURE_ARGS+=--disable-ospf6d --disable-ripngd
PLIST_SRC= ${PKGDIR}/PLIST
.else
PLIST_SRC= ${PKGDIR}/PLIST.v6
.endif
.include "../../mk/bsd.pkg.mk"
|