summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-07-18 15:24:32 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-07-18 15:24:32 +0000
commitbb6b499259a484cbbc147390da1192a3d247c1e7 (patch)
tree9e44c5666072dca185966bef4556dee9499af2e2 /net-p2p/dc-qt
parentVersion bump (diff)
downloadgentoo-2-bb6b499259a484cbbc147390da1192a3d247c1e7.tar.gz
gentoo-2-bb6b499259a484cbbc147390da1192a3d247c1e7.tar.bz2
gentoo-2-bb6b499259a484cbbc147390da1192a3d247c1e7.zip
Use eautoreconf, bug #226403
(Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r8 i686)
Diffstat (limited to 'net-p2p/dc-qt')
-rw-r--r--net-p2p/dc-qt/ChangeLog7
-rw-r--r--net-p2p/dc-qt/dc-qt-0.1.2.ebuild16
2 files changed, 13 insertions, 10 deletions
diff --git a/net-p2p/dc-qt/ChangeLog b/net-p2p/dc-qt/ChangeLog
index 1b3cfbc850bc..36757a432205 100644
--- a/net-p2p/dc-qt/ChangeLog
+++ b/net-p2p/dc-qt/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-p2p/dc-qt
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/dc-qt/ChangeLog,v 1.8 2007/01/21 17:07:52 armin76 Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/dc-qt/ChangeLog,v 1.9 2008/07/18 15:24:32 armin76 Exp $
+
+ 18 Jul 2008; Raúl Porcel <armin76@gentoo.org> dc-qt-0.1.2.ebuild:
+ Use eautoreconf, bug #226403
21 Jan 2007; Raúl Porcel <armin76@gentoo.org> -dc-qt-0.1.1.ebuild,
dc-qt-0.1.2.ebuild:
diff --git a/net-p2p/dc-qt/dc-qt-0.1.2.ebuild b/net-p2p/dc-qt/dc-qt-0.1.2.ebuild
index e3c83ae2081d..1b145d1aaf74 100644
--- a/net-p2p/dc-qt/dc-qt-0.1.2.ebuild
+++ b/net-p2p/dc-qt/dc-qt-0.1.2.ebuild
@@ -1,8 +1,8 @@
-# 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-p2p/dc-qt/dc-qt-0.1.2.ebuild,v 1.7 2007/02/23 11:49:52 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/dc-qt/dc-qt-0.1.2.ebuild,v 1.8 2008/07/18 15:24:32 armin76 Exp $
-inherit eutils qt3
+inherit eutils qt3 autotools
IUSE="xine"
@@ -20,18 +20,18 @@ DEPEND="$(qt_min_version 3.2)
src_unpack() {
unpack ${A}
- cd ${S}
+ cd "${S}"
- epatch ${FILESDIR}/${P}-xine.patch
- autoreconf
+ epatch "${FILESDIR}"/${P}-xine.patch
+ eautoreconf
}
src_compile() {
econf \
- `use_with xine` || die
+ $(use_with xine) || die
emake || die
}
src_install() {
- make DESTDIR=${D} install || die
+ emake DESTDIR="${D}" install || die
}