summaryrefslogtreecommitdiff
path: root/net/zebra
AgeCommit message (Collapse)AuthorFilesLines
2006-09-26Remove zebra.salo16-397/+0
No longer developed upstream, literally for years. Vulnerable, nobody stepped up to fix it. Use net/quagga instead.
2006-03-20* Nuke all references to and definitions of INFO_DIR in package Makefilesjlam2-6/+5
and replace with appropriate references to PKGINFODIR instead. * Properly account for split info files during installation. * Move info file listings directly into the package PLISTs. This fixes info-file-related PLIST problems.
2006-03-05* Teach the tools framework how to supply the pkgsrc version ofjlam1-3/+3
makeinfo if no native makeinfo executable exists. Honor TEXINFO_REQD when determining whether the native makeinfo can be used. * Remove USE_MAKEINFO and replace it with USE_TOOLS+=makeinfo. * Get rid of all the "split" argument deduction for makeinfo since the PLIST module already handles varying numbers of split info files correctly. NOTE: Platforms that have "makeinfo" in the base system should check that the makeinfo entries of pkgsrc/mk/tools.${OPSYS}.mk are correct.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-19Remove redundant errno.joerg2-1/+14
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-09-28Replaced "# defined" with "yes" in Makefile variables like GNU_CONFIGURE,rillig1-2/+2
NO_BUILD, USE_LIBTOOL.
2005-08-11Changes 0.95:adam6-65/+59
* Changes in zebra ** IRDP support is added. * Changes in ripd ** Set receive UDP socket buffer to large value. * Changes in ospfd ** Fix problem of OpenBSD-3.4 IP header length treatment. * Changes in ospf6d ** Area support is added. * Changes in bgpd ** Old commands are removed "show ipv6 summary" "show ipv6 mbgp summary" ** New ospf6d implementation is introduced. This is rewrite of whole ospf6d code to make it far much better than old code. * Changes in vtysh ** Many bugs and problems are fixed. All of user of vtysh should update to zebra-0.95.
2005-06-01Remove mk/autoconf.mk and mk/automake.mk and replace their usage withjlam1-5/+4
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digests.agc1-1/+2
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-04AUTOMAKE_REQD should only be set to 1.4 in the few cases where needed,wiz1-2/+1
otherwise the default is better (and the variable doesn't need to be set). Remove a few cases where it was set unnecessarily.
2004-04-25Convert to buildlink3.snj1-4/+4
2004-03-09Remove info files entries from PLIST.seb1-2/+1
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-12-29Upgrade zebra to 0.94.heas11-49/+114
2003-11-18Fix a security problem wrt telnet control characters. Bump PKGREVISION.wiz3-2/+29
2003-08-13conflict w/ quaggaitojun1-1/+3
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-08-04Convert to USE_NEW_TEXINFO.seb2-5/+5
2002-10-02Use automake.mk.wiz1-5/+5
2002-09-13upgrade to 0.93b.itojun15-310/+5
o BGP connection problem is fixed. o EAGAIN check is added.
2002-08-25Merge packages from the buildlink2 branch back into the main trunk thatjlam22-24/+24
have been converted to USE_BUILDLINK2.
2002-08-03pull critical patches in from zebra cvs repo (i have been asking for releaseitojun15-2/+307
of 0.93b, however, it's not happening yet) - bgpd: bug in capability negotiation - ospf6d: synchronize with zebra deamon correctly
2002-07-09upgrade to 0.93a (it is a leaf package, so it should be okay)itojun9-84/+52
0.93a + Fix host_name to host_triplet. + Ohara's crush fix for ospf6d. 0.93 + New config of BGP. + Crush problem ospfd which reported on Zebra ML is fixed. + KDD R&D Laboratories, Inc. OSPF Opaque LSA and TE LSA.
2002-03-18Support PKG_SYSCONFDIR. Patch from Hiramatsu Yoshifumi in pkg/15598.wiz1-2/+3
2002-02-18Introduce new framework for handling info files generation and installation.seb2-6/+6
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
2001-11-29A dependency on automake implies a dependency on autoconf; there's no needjlam1-2/+1
to list them both when we listing just automake will do.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum5-4/+4
2001-08-27Use wildcard dependence on "autoconf" package.tron1-2/+2
2001-08-26Update automake to 1.4-p5 (1.5 is available)skrll1-2/+2
Include a bugfix for lisp_LISP independently discovered by me that has been pulled up to the automake-1-4 branch of automake cvs. Changes are: New in 1.4-p5: * Allow AM_PROG_LIBTOOL again. * Diagnose AC_CONFIG_HEADERS the same as AC_CONFIG_HEADER. * Display distributed file list correctly in usage message. * Allow numbers in macro names. * Bugfixes. New in 1.4-p4: * Deal with configure.ac as well as configure.in -- this time for real! * The version numbering system now allows three point version numbers, such as 1.4.4, without thinking they are alpha release numbers. New in 1.4-p3: * Deal with configure.ac as well as configure.in. * Don't complain if `version.texi' is included in multiple places. New in 1.4-p2: * Deal with AC_CONFIG_FILES from autoconf-2.50. * Improvements to f77 support. * DESTDIR now works for script targets. * distcheck-hook works correctly. New in 1.4-p1: * The version numbering system now allows fork identifiers (such as the p1 in this version of automake). * Cope gracefully with various versions of libtool which may or may not require ltconfig, ltcf-c.sh, ltcf-cxx.sh or ltcf-gcj.sh. * Bugfixes.
2001-08-20upgrade to 0.92a.itojun2-5/+5
* Changes in bgpd ** Fix "^$" community list bug. ** Below command's Address Family specific configurations are added nexthop-self route-reflector-client route-server-client soft-reconfiguration inbound * Changes in zebra ** Treat kernel type routes as EGP routes.
2001-08-19upgrade to zebra 0.92. see zebra-0.92/*/ChangeLog for detailed changes.itojun3-12/+7
2001-06-26Install zebra.info-{1,2,3} (pregenerated). Fixes pkg/13067 by Kimmo Suouminen.wiz3-5/+11
2001-06-21Reorder some lines so that GNU_CONFIGURE defintion precedes inclusion ofjlam1-5/+7
buildlink.mk files. Mark as USE_BUILDLINK_ONLY.
2001-06-12LIBS is automatically added to CONFIGURE_ENV by bsd.pkg.mk ifjlam1-2/+2
GNU_CONFIGURE is defined, so simply set LIBS to the appropriate value.
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam1-2/+1
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-06-11The buildlink include and lib directories are added to CFLAGS, CPPFLAGS,jlam1-3/+1
CXXFLAGS, and LDFLAGS by the buildlink.mk files so remove the extra definitions to add them from the package Makefiles. As advised by the bsd.buildlink.mk file, also ensure that the buildlink.mk files are included prior to defining any package-specific CFLAGS/LDFLAGS to ensure that the buildlink directories are at the head of the compiler search paths.
2001-06-10Remove dependency on ${BUILDLINK_TARGETS} in pre-configure and pre-buildjlam1-2/+2
targets as the buildlink.mk files now add the dependency automatically. Remove any NO_CONFIGURE definitions as they seem to be useless.
2001-05-28Use buildlink.mk to get readline dependency and use ${BUILDLINK_INCDIR}jlam4-37/+41
and ${BUILDLINK_LIBDIR} to find headers and libraries. Also find tputs() in termcap first, before looking in tinfo, curses, then ncurses. Simplify the PLIST handling by using space-separated list of PLIST files in PLIST_SRC.
2001-04-21Move to sha1 checksum, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-12/+10
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-27Change BUILD_DEPENDS semantics:hubertf1-3/+3
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>
2001-03-09no need to include bsd.prefs.mk twiceitojun1-3/+1
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-02-06Make that "autoreconf" -- there is no "autoremake".fredb1-3/+3