diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2007-10-06 15:23:21 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2007-10-06 15:23:21 +0000 |
commit | ab660d0aca61bbf34d67ca386ce9b0289bb32d8d (patch) | |
tree | b9587133cdadb9366b8c933bdd312bc7d2557fa4 /net-dns | |
parent | ppc stable, bug #192695 (diff) | |
download | gentoo-2-ab660d0aca61bbf34d67ca386ce9b0289bb32d8d.tar.gz gentoo-2-ab660d0aca61bbf34d67ca386ce9b0289bb32d8d.tar.bz2 gentoo-2-ab660d0aca61bbf34d67ca386ce9b0289bb32d8d.zip |
Remove -Werror (#183768) thanks to Karsten Baumgarten <karsten.baumgarten@gmx.net>.
(Portage version: 2.1.3.9)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/totd/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/totd/files/totd-1.5.1-no_werror.patch | 11 | ||||
-rw-r--r-- | net-dns/totd/totd-1.5.1.ebuild | 10 |
3 files changed, 26 insertions, 2 deletions
diff --git a/net-dns/totd/ChangeLog b/net-dns/totd/ChangeLog index 3191dd116551..659601d18307 100644 --- a/net-dns/totd/ChangeLog +++ b/net-dns/totd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/totd # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/ChangeLog,v 1.6 2007/05/06 09:24:36 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/ChangeLog,v 1.7 2007/10/06 15:23:21 coldwind Exp $ + + 06 Oct 2007; Santiago M. Mola <coldwind@gentoo.org> + +files/totd-1.5.1-no_werror.patch, totd-1.5.1.ebuild: + Remove -Werror (#183768) thanks to Karsten Baumgarten + <karsten.baumgarten@gmx.net> 06 May 2007; Marius Mauch <genone@gentoo.org> totd-1.3.ebuild, totd-1.5.ebuild, totd-1.5.1.ebuild: diff --git a/net-dns/totd/files/totd-1.5.1-no_werror.patch b/net-dns/totd/files/totd-1.5.1-no_werror.patch new file mode 100644 index 000000000000..246e709d5109 --- /dev/null +++ b/net-dns/totd/files/totd-1.5.1-no_werror.patch @@ -0,0 +1,11 @@ +--- totd-1.5.1/Makefile.in 2005-01-31 12:55:14.000000000 +0100 ++++ totd-1.5.1_new/Makefile.in 2007-06-30 22:51:07.000000000 +0200 +@@ -19,7 +19,7 @@ + + INSTALL = /usr/bin/install + +-CFLAGS = @CFLAGS@ @DEFS@ -Werror -Wall -DTOTCONF=\"$(TOT_CONFIG_FILE)\" @OPTFLAGS@ $(INCLUDEPATH) ++CFLAGS = @CFLAGS@ @DEFS@ -Wall -DTOTCONF=\"$(TOT_CONFIG_FILE)\" @OPTFLAGS@ $(INCLUDEPATH) + + # When debugging is enabled by --enable-malloc-debug flag to the configure + # script, the @DBMALLOC@ substitution will contain the empty string, thus diff --git a/net-dns/totd/totd-1.5.1.ebuild b/net-dns/totd/totd-1.5.1.ebuild index fac13875ef25..9d67f1fbf6d3 100644 --- a/net-dns/totd/totd-1.5.1.ebuild +++ b/net-dns/totd/totd-1.5.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/totd-1.5.1.ebuild,v 1.3 2007/05/06 09:24:36 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/totd/totd-1.5.1.ebuild,v 1.4 2007/10/06 15:23:21 coldwind Exp $ + +inherit eutils DESCRIPTION="Trick Or Treat Daemon, a DNS proxy for 6to4" HOMEPAGE="http://www.vermicelli.pasta.cs.uit.no/ipv6/software.html" @@ -12,6 +14,12 @@ KEYWORDS="~x86" IUSE="" DEPEND="" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-no_werror.patch +} + src_compile() { econf --enable-ipv4 --enable-ipv6 --enable-stf \ --enable-scoped-rewrite --disable-http-server || die "configure failed" |