diff options
author | Thilo Bangert <bangert@gentoo.org> | 2010-03-23 12:54:58 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2010-03-23 12:54:58 +0000 |
commit | 1988f04f7079185b4999ad474efddc587ad4972b (patch) | |
tree | 8d9be13d1634e2c4a1ce27b04115a225363eeec5 /net-dns/tinystats/tinystats-1.1.ebuild | |
parent | stable ppc64, bug 310705 (diff) | |
download | gentoo-2-1988f04f7079185b4999ad474efddc587ad4972b.tar.gz gentoo-2-1988f04f7079185b4999ad474efddc587ad4972b.tar.bz2 gentoo-2-1988f04f7079185b4999ad474efddc587ad4972b.zip |
honour LDFLAGS - fix URLs (#309119) - thanks Doktor Notor
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'net-dns/tinystats/tinystats-1.1.ebuild')
-rw-r--r-- | net-dns/tinystats/tinystats-1.1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-dns/tinystats/tinystats-1.1.ebuild b/net-dns/tinystats/tinystats-1.1.ebuild index 839aa6269012..cb50a54fb74f 100644 --- a/net-dns/tinystats/tinystats-1.1.ebuild +++ b/net-dns/tinystats/tinystats-1.1.ebuild @@ -1,12 +1,12 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/tinystats/tinystats-1.1.ebuild,v 1.2 2008/01/25 23:10:02 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/tinystats/tinystats-1.1.ebuild,v 1.3 2010/03/23 12:54:58 bangert Exp $ inherit toolchain-funcs DESCRIPTION="A tinydns logging helper app." -HOMEPAGE="http://morettoni.net/tinystats.en.html" -SRC_URI="http://morettoni.net/bsd/${P}.tar.gz" +HOMEPAGE="http://www.morettoni.net/tinystats.en.html" +SRC_URI="http://www.morettoni.net/bsd/${P}.tar.gz" IUSE="ipv6" SLOT="0" @@ -17,7 +17,7 @@ S=${WORKDIR}/${PN} src_compile() { use ipv6 && IPV6="-D WITH_IPV6" - $(tc-getCC) ${CFLAGS} ${IPV6} -o tinystats tinystats.c || \ + $(tc-getCC) ${CFLAGS} ${IPV6} -o tinystats ${LDFLAGS} tinystats.c || \ die "compile failed" } |