summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2007-01-04 13:35:54 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2007-01-04 13:35:54 +0000
commit6bd0698d3f77c8694b7346885022af64e0222ca3 (patch)
tree6bcb68c6e10c33445412b8c3f8e918b8e56f9c00 /net-p2p
parentnew ebuild, #142805 (diff)
downloadgentoo-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')
-rw-r--r--net-p2p/dctc/ChangeLog7
-rw-r--r--net-p2p/dctc/dctc-0.85.9.ebuild15
2 files changed, 15 insertions, 7 deletions
diff --git a/net-p2p/dctc/ChangeLog b/net-p2p/dctc/ChangeLog
index ae2b2c6eb67e..1accb709b86c 100644
--- a/net-p2p/dctc/ChangeLog
+++ b/net-p2p/dctc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-p2p/dctc
-# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/ChangeLog,v 1.31 2006/06/06 20:39:23 sekretarz Exp $
+# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/ChangeLog,v 1.32 2007/01/04 13:35:54 flameeyes Exp $
+
+ 04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> dctc-0.85.9.ebuild:
+ Fix autotools handling and quoting, patch by Jakub Moc in bug #153269.
07 Jun 2006; Karol Wojtaszek <sekretarz@gentoo.org> dctc-0.85.9.ebuild:
Fix for db-4.0 doesn't work anymore, bug #135320
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
}