diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-03-22 17:06:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-03-22 17:06:23 +0000 |
commit | 5952fb37a78378cb3fe6f407fd963f8d4e7bdcd9 (patch) | |
tree | dcfdc26b007b5cc7d7bb7e47c5a3648492848855 /net-misc/quagga | |
parent | Stabilize for everyone for Turkey #359981 by Serkan Kaba. (diff) | |
download | gentoo-2-5952fb37a78378cb3fe6f407fd963f8d4e7bdcd9.tar.gz gentoo-2-5952fb37a78378cb3fe6f407fd963f8d4e7bdcd9.tar.bz2 gentoo-2-5952fb37a78378cb3fe6f407fd963f8d4e7bdcd9.zip |
Drop realms patch (failed to apply this time as well), add backports with fix for opaque-lsa (USE=ospfapi).
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/quagga')
-rw-r--r-- | net-misc/quagga/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/quagga/quagga-0.99.18.ebuild | 28 |
2 files changed, 19 insertions, 15 deletions
diff --git a/net-misc/quagga/ChangeLog b/net-misc/quagga/ChangeLog index 7bdadd155ff6..1d553553b990 100644 --- a/net-misc/quagga/ChangeLog +++ b/net-misc/quagga/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/quagga # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.103 2011/03/21 16:27:11 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.104 2011/03/22 17:06:23 flameeyes Exp $ + + 22 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> quagga-0.99.18.ebuild: + Drop realms patch (failed to apply this time as well), add backports with fix + for opaque-lsa (USE=ospfapi). *quagga-0.99.18 (21 Mar 2011) diff --git a/net-misc/quagga/quagga-0.99.18.ebuild b/net-misc/quagga/quagga-0.99.18.ebuild index 516d28221656..3f7e8ae7e0bb 100644 --- a/net-misc/quagga/quagga-0.99.18.ebuild +++ b/net-misc/quagga/quagga-0.99.18.ebuild @@ -1,26 +1,26 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.1 2011/03/21 16:27:10 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.99.18.ebuild,v 1.2 2011/03/22 17:06:23 flameeyes Exp $ EAPI="2" CLASSLESS_BGP_PATCH=ht-20040304-classless-bgp.patch -#REALMS_PATCH=quagga-0.99.14-realms-test2.diff -REALMS_PATCH=quagga-0.99.14-realms-test2-gentoo.patch.bz2 + +BACKPORTS=1 inherit eutils multilib autotools pam DESCRIPTION="A free routing daemon replacing Zebra supporting RIP, OSPF and BGP." HOMEPAGE="http://quagga.net/" SRC_URI="http://www.quagga.net/download/${P}.tar.gz - bgpclassless? ( http://hasso.linux.ee/stuff/patches/quagga/${CLASSLESS_BGP_PATCH} ) - realms? ( http://dev.gentoo.org/~flameeyes/patches/${PN}/${REALMS_PATCH} )" -# realms? ( http://linux.mantech.ro/download/quagga/${REALMS_PATCH} ) + ${BACKPORTS:+ + http://dev.gentoo.org/~flameeyes/${PN}/${P}-backports-${BACKPORTS}.tar.bz2} + bgpclassless? ( http://hasso.linux.ee/stuff/patches/quagga/${CLASSLESS_BGP_PATCH} )" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86" -IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi realms multipath tcp-zebra elibc_glibc +readline" +IUSE="caps doc ipv6 snmp pam bgpclassless ospfapi multipath tcp-zebra elibc_glibc +readline" COMMON_DEPEND=" caps? ( sys-libs/libcap ) @@ -41,17 +41,14 @@ pkg_setup() { } src_prepare() { - epatch "${FILESDIR}/${PN}-0.99.17-gentoo.patch" + [[ -n ${BACKPORTS} ]] && \ + EPATCH_FORCE=yes EPATCH_SUFFIX="patch" EPATCH_SOURCE="${S}/patches" \ + epatch # Classless prefixes for BGP # http://hasso.linux.ee/doku.php/english:network:quagga use bgpclassless && epatch "${DISTDIR}/${CLASSLESS_BGP_PATCH}" - # Realms support (Calin Velea) - # http://vcalinus.gemenii.ro/quaggarealms.html - # http://linux.mantech.ro/quagga+realm_en.php - use realms && epatch "${DISTDIR}/${REALMS_PATCH}" - eautoreconf } @@ -61,7 +58,6 @@ src_configure() { use ospfapi \ && myconf="${myconf} --enable-opaque-lsa --enable-ospf-te --enable-ospfclient" - use realms && myconf="${myconf} --enable-realms" use multipath && myconf="${myconf} --enable-multipath=0" econf \ @@ -120,4 +116,8 @@ pkg_postinst() { elog "" elog "You can pass additional options to the daemon by setting the EXTRA_OPTS" elog "variable in their respective file in /etc/conf.d" + elog "" + elog "Starting from version 0.99.18, quagga no longer supports the realms patch." + elog "The patch was abandoned upstream and once again didn't apply; it needs a" + elog "dedicated maintainer, if it is still necessary." } |