diff options
author | gdt <gdt@pkgsrc.org> | 2010-03-10 19:57:06 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2010-03-10 19:57:06 +0000 |
commit | c8977f32012f5ee4db99a3bcebce0e1d685bd3ad (patch) | |
tree | 8362253469ae3bff647235280488614751438bf9 /net/quagga-devel/Makefile | |
parent | e517f1b0f69f679a5f42099b12dae2dbf71d24ae (diff) | |
download | pkgsrc-c8977f32012f5ee4db99a3bcebce0e1d685bd3ad.tar.gz |
Update to 0.99.16. DESTDIR support. LICENSE is gpl2. Cosmetic fixup
to options. Changes since 0.99.15:
bgpd:
use monotonic clock for time of day
code cleanup
compile warnings cleanup
work around warning in assegments_parse()
ospfd:
fix debug messages that were masked by DISCARD_LSA
remove unneeded memset from a very hot function
VTY strings cleanup
comment out unused function
make local functions static
enable more OSPF cost command aliases
lib:
fix memory logging
make some structures constant
move check_bit into prefix common code
fix warning on little endian
make match functions take const args
remove unused function: route_dump_node()
log source of vty connections (bug #566)
zebra:
change router-id selection algo
deal with irdp compile warnings
cleanup RIB meta queue code
fix more warnings in rtadv
fix more compiler warnings
remove unused function to fix warning
handle RTF_CLONING removal from FreeBSD 8.0
fix argument reference in strncpy() call for BSD
fix RIB debug message for IPv6
make declaration const in rtm_flag_dump()
fix router advertisements for non-Ethernet link layer addresses
ospf6d:
remove dead code
fix warnings from recent prefix bit commit
review LSA sequence number comparison
fix LSA locking in ospf6_new_ls_id()
other:
ripd: fix compiler warnings
ripngd: compiler warnings cleanup
isisd: fix --enable-isis-topology for 64-bit Linux
isisd: fix BPF ioctl() calls, treat "true" and "false" as reserved
configure: fix spelling
configure: fix HAVE_CLOCK_MONOTONIC spelling
Diffstat (limited to 'net/quagga-devel/Makefile')
-rw-r--r-- | net/quagga-devel/Makefile | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/net/quagga-devel/Makefile b/net/quagga-devel/Makefile index 4457b76ef52..855f0ac1c59 100644 --- a/net/quagga-devel/Makefile +++ b/net/quagga-devel/Makefile @@ -1,14 +1,16 @@ -# $NetBSD: Makefile,v 1.13 2009/11/05 13:24:14 gdt Exp $ +# $NetBSD: Makefile,v 1.14 2010/03/10 19:57:06 gdt Exp $ # -DISTNAME= quagga-0.99.15 -PKGREVISION= 1 +DISTNAME= quagga-0.99.16 CATEGORIES= net MASTER_SITES= http://www.quagga.net/download/ MAINTAINER= gdt@NetBSD.org HOMEPAGE= http://www.quagga.net/ COMMENT= Free multithreaded routing daemon software +LICENSE= gnu-gpl-v2 + +PKG_DESTDIR_SUPPORT= user-destdir .include "../../mk/bsd.prefs.mk" @@ -50,15 +52,15 @@ RCD_SCRIPT_SRC.${_script_}?= ${WRKSRC}/pkgsrc/${_script_}.sh .endfor post-install: - @${CHMOD} a+r ${PREFIX}/share/examples/quagga/* - ${INSTALL} -d -o quagga -g quagga -m 750 ${PKG_SYSCONFDIR} - ${INSTALL_DATA} ${FILESDIR}/log_syslog.conf ${PREFIX}/share/examples/quagga - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/quagga - ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/quagga/mpls - ${INSTALL_DATA} ${WRKSRC}/doc/BGP-TypeCode ${PREFIX}/share/doc/quagga - ${INSTALL_DATA} ${WRKSRC}/doc/draft-zebra-00.txt ${PREFIX}/share/doc/quagga - ${INSTALL_DATA} ${WRKSRC}/doc/mpls/* ${PREFIX}/share/doc/quagga/mpls + @${CHMOD} a+r ${DESTDIR}${PREFIX}/share/examples/quagga/* + ${INSTALL} -d -o quagga -g quagga -m 750 ${DESTDIR}${PKG_SYSCONFDIR} + ${INSTALL_DATA} ${FILESDIR}/log_syslog.conf ${DESTDIR}${PREFIX}/share/examples/quagga + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/quagga + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/quagga/mpls + ${INSTALL_DATA} ${WRKSRC}/doc/BGP-TypeCode ${DESTDIR}${PREFIX}/share/doc/quagga + ${INSTALL_DATA} ${WRKSRC}/doc/draft-zebra-00.txt ${DESTDIR}${PREFIX}/share/doc/quagga + ${INSTALL_DATA} ${WRKSRC}/doc/mpls/* ${DESTDIR}${PREFIX}/share/doc/quagga/mpls ${CAT} ${PLIST_CAT} > ${PLIST_SRC} - (cd ${PREFIX}; ${FIND} share/doc/quagga -type f -print ) >> ${PLIST_SRC} + (cd ${DESTDIR}${PREFIX}; ${FIND} share/doc/quagga -type f -print ) >> ${PLIST_SRC} .include "../../mk/bsd.pkg.mk" |