diff options
author | Robert Buchholz <rbu@gentoo.org> | 2008-05-12 18:23:10 +0000 |
---|---|---|
committer | Robert Buchholz <rbu@gentoo.org> | 2008-05-12 18:23:10 +0000 |
commit | 8fea404f41086e6bdf0622504ffd872fc7ea03a1 (patch) | |
tree | b094901f9a1f7f47f0f5ad437714347a4cc5b26a /net-misc/aiccu | |
parent | Sparc stable, Bug #214792, looks good. (diff) | |
download | gentoo-2-8fea404f41086e6bdf0622504ffd872fc7ea03a1.tar.gz gentoo-2-8fea404f41086e6bdf0622504ffd872fc7ea03a1.tar.bz2 gentoo-2-8fea404f41086e6bdf0622504ffd872fc7ea03a1.zip |
Change the homepage, fix a compile error when using "--as-needed" LDFLAGS (bug #179581)
(Portage version: 2.1.5_rc4)
Diffstat (limited to 'net-misc/aiccu')
-rw-r--r-- | net-misc/aiccu/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/aiccu/aiccu-2007.01.15.ebuild | 13 | ||||
-rw-r--r-- | net-misc/aiccu/files/aiccu-2007.01.15-as-needed.patch | 13 |
3 files changed, 30 insertions, 5 deletions
diff --git a/net-misc/aiccu/ChangeLog b/net-misc/aiccu/ChangeLog index 1b825afc0665..b6e0722da82a 100644 --- a/net-misc/aiccu/ChangeLog +++ b/net-misc/aiccu/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/aiccu -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/ChangeLog,v 1.16 2007/10/02 18:21:38 angelos Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/ChangeLog,v 1.17 2008/05/12 18:23:10 rbu Exp $ + + 12 May 2008; Robert Buchholz <rbu@gentoo.org> + +files/aiccu-2007.01.15-as-needed.patch, aiccu-2007.01.15.ebuild: + Change the homepage, fix a compile error when using "--as-needed" LDFLAGS + (bug #179581) 02 Oct 2007; Christoph Mende <angelos@gentoo.org> aiccu-2007.01.15.ebuild: Stable on amd64 diff --git a/net-misc/aiccu/aiccu-2007.01.15.ebuild b/net-misc/aiccu/aiccu-2007.01.15.ebuild index 3b079157f488..08a0d46f8985 100644 --- a/net-misc/aiccu/aiccu-2007.01.15.ebuild +++ b/net-misc/aiccu/aiccu-2007.01.15.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/aiccu-2007.01.15.ebuild,v 1.5 2007/10/02 18:21:38 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/aiccu/aiccu-2007.01.15.ebuild,v 1.6 2008/05/12 18:23:10 rbu Exp $ inherit eutils DESCRIPTION="AICCU Client to configure an IPv6 tunnel to SixXS" -HOMEPAGE="http://www.sixxs.net/" +HOMEPAGE="http://www.sixxs.net/tools/aiccu" SRC_URI="http://www.sixxs.net/archive/sixxs/aiccu/unix/${PN}_${PV//\./}.tar.gz" LICENSE="SixXS" @@ -16,6 +16,13 @@ DEPEND="net-libs/gnutls sys-apps/iproute2" S=${WORKDIR}/aiccu +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-as-needed.patch" +} + src_compile() { cd ${S} export RPM_OPT_FLAGS=${CFLAGS} diff --git a/net-misc/aiccu/files/aiccu-2007.01.15-as-needed.patch b/net-misc/aiccu/files/aiccu-2007.01.15-as-needed.patch new file mode 100644 index 000000000000..36fbc3bfac1e --- /dev/null +++ b/net-misc/aiccu/files/aiccu-2007.01.15-as-needed.patch @@ -0,0 +1,13 @@ +Index: aiccu/unix-console/Makefile +=================================================================== +--- aiccu.orig/unix-console/Makefile ++++ aiccu/unix-console/Makefile +@@ -144,7 +144,7 @@ endif + all: aiccu + + aiccu: $(OBJS) ${SRCS} ${INCS} +- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) ++ $(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) -o $@ + ifeq ($(shell echo $(CFLAGS) | grep -c "DEBUG"),0) + ifeq ($(shell echo "$(RPM_OPT_FLAGS)" | wc -c),1) + strip $@ |