summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2005-10-31 11:13:44 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2005-10-31 11:13:44 +0000
commit101cc87ef3fe27bc16decc508c418ad6beba48ce (patch)
tree75e8e9296f15082262bef1b96dbe6fa29e5c026c /media-sound
parentAdd oci8-instant-client USE flag for dev-lang/php. (diff)
downloadgentoo-2-101cc87ef3fe27bc16decc508c418ad6beba48ce.tar.gz
gentoo-2-101cc87ef3fe27bc16decc508c418ad6beba48ce.tar.bz2
gentoo-2-101cc87ef3fe27bc16decc508c418ad6beba48ce.zip
Cleanup of econf call, without assuming GNU ld.
(Portage version: 2.0.53_rc6)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/protux/ChangeLog6
-rw-r--r--media-sound/protux/protux-0.20.1.ebuild7
-rw-r--r--media-sound/protux/protux-0.20.2.ebuild7
3 files changed, 9 insertions, 11 deletions
diff --git a/media-sound/protux/ChangeLog b/media-sound/protux/ChangeLog
index 3ca4143f9b73..9bd0f7e1fe23 100644
--- a/media-sound/protux/ChangeLog
+++ b/media-sound/protux/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/protux
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/protux/ChangeLog,v 1.18 2005/09/04 10:58:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/protux/ChangeLog,v 1.19 2005/10/31 11:13:44 flameeyes Exp $
+
+ 31 Oct 2005; Diego Pettenò <flameeyes@gentoo.org> protux-0.20.1.ebuild,
+ protux-0.20.2.ebuild:
+ Cleanup of econf call, without assuming GNU ld.
04 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> protux-0.20.1.ebuild,
protux-0.20.2.ebuild:
diff --git a/media-sound/protux/protux-0.20.1.ebuild b/media-sound/protux/protux-0.20.1.ebuild
index f58f750e4866..e2d97e759bfd 100644
--- a/media-sound/protux/protux-0.20.1.ebuild
+++ b/media-sound/protux/protux-0.20.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/protux/protux-0.20.1.ebuild,v 1.7 2005/09/04 10:58:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/protux/protux-0.20.1.ebuild,v 1.8 2005/10/31 11:13:44 flameeyes Exp $
inherit eutils kde-functions
@@ -28,10 +28,7 @@ src_unpack() {
src_compile() {
export QT_MOC=${QTDIR}/bin/moc
- local myconf
- myconf="--with-gnu-ld"
- use static || myconf="${myconf} --enable-static=no"
- econf ${myconf} || die "configure failed"
+ econf $(use_enable static) || die "configure failed"
emake || die
}
diff --git a/media-sound/protux/protux-0.20.2.ebuild b/media-sound/protux/protux-0.20.2.ebuild
index 446c160f91ef..f0422c392d82 100644
--- a/media-sound/protux/protux-0.20.2.ebuild
+++ b/media-sound/protux/protux-0.20.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/protux/protux-0.20.2.ebuild,v 1.7 2005/09/04 10:58:09 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/protux/protux-0.20.2.ebuild,v 1.8 2005/10/31 11:13:44 flameeyes Exp $
inherit eutils kde-functions
@@ -28,10 +28,7 @@ src_unpack() {
src_compile() {
export QT_MOC=${QTDIR}/bin/moc
- local myconf
- myconf="--with-gnu-ld"
- use static || myconf="${myconf} --enable-static=no"
- econf ${myconf} || die "configure failed"
+ econf $(use_enable static) || die "configure failed"
emake || die
}