diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 13:35:54 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-04 13:35:54 +0000 |
commit | 6bd0698d3f77c8694b7346885022af64e0222ca3 (patch) | |
tree | 6bcb68c6e10c33445412b8c3f8e918b8e56f9c00 /net-p2p/dctc/dctc-0.85.9.ebuild | |
parent | new ebuild, #142805 (diff) | |
download | gentoo-2-6bd0698d3f77c8694b7346885022af64e0222ca3.tar.gz gentoo-2-6bd0698d3f77c8694b7346885022af64e0222ca3.tar.bz2 gentoo-2-6bd0698d3f77c8694b7346885022af64e0222ca3.zip |
Fix autotools handling and quoting, patch by Jakub Moc in bug #153269.
(Portage version: 2.1.2_rc4-r5)
Diffstat (limited to 'net-p2p/dctc/dctc-0.85.9.ebuild')
-rw-r--r-- | net-p2p/dctc/dctc-0.85.9.ebuild | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/net-p2p/dctc/dctc-0.85.9.ebuild b/net-p2p/dctc/dctc-0.85.9.ebuild index b152720fbbd3..81fedd310f94 100644 --- a/net-p2p/dctc/dctc-0.85.9.ebuild +++ b/net-p2p/dctc/dctc-0.85.9.ebuild @@ -1,6 +1,9 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/dctc-0.85.9.ebuild,v 1.14 2006/06/06 20:39:23 sekretarz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/dctc-0.85.9.ebuild,v 1.15 2007/01/04 13:35:54 flameeyes Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" inherit eutils autotools @@ -14,13 +17,15 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc ~amd64 ~sparc" -DEPEND="=dev-libs/glib-2* +RDEPEND="=dev-libs/glib-2* >=sys-libs/db-3 dev-libs/libxml2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch "${FILESDIR}"/dctc-0.85.6-passive.patch epatch "${FILESDIR}"/dctc-0.85.9-gcc41.patch @@ -29,7 +34,7 @@ src_unpack() { } src_install() { - emake DESTDIR=${D} install || die + emake DESTDIR="${D}" install || die dodoc Documentation/* Documentation/DCextensions/* dodoc AUTHORS COPYING ChangeLog INSTALL KNOWN_BUGS NEWS README TODO } |