summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Ullmann <jokey@gentoo.org>2006-05-18 12:00:35 +0000
committerMarkus Ullmann <jokey@gentoo.org>2006-05-18 12:00:35 +0000
commit626f3361717782865d1b12bf27fd4ff2bd8083bd (patch)
tree35eede92d235526be1eb4836e810ab18f3178521 /media-sound/radiomixer
parentInitial import. Ebuild by Paul Bredbury <brebs@sent.com> and modified by me.... (diff)
downloadgentoo-2-626f3361717782865d1b12bf27fd4ff2bd8083bd.tar.gz
gentoo-2-626f3361717782865d1b12bf27fd4ff2bd8083bd.tar.bz2
gentoo-2-626f3361717782865d1b12bf27fd4ff2bd8083bd.zip
Removing the qmake call as it is done by upstreams configure now
(Portage version: 2.1_rc1-r2)
Diffstat (limited to 'media-sound/radiomixer')
-rw-r--r--media-sound/radiomixer/ChangeLog5
-rw-r--r--media-sound/radiomixer/radiomixer-1.0.ebuild8
2 files changed, 7 insertions, 6 deletions
diff --git a/media-sound/radiomixer/ChangeLog b/media-sound/radiomixer/ChangeLog
index 38b9caad1426..2684dda749c5 100644
--- a/media-sound/radiomixer/ChangeLog
+++ b/media-sound/radiomixer/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/radiomixer
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/radiomixer/ChangeLog,v 1.3 2006/05/18 11:47:27 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/radiomixer/ChangeLog,v 1.4 2006/05/18 12:00:35 jokey Exp $
+
+ 18 May 2006; Markus Ullmann <jokey@gentoo.org> radiomixer-1.0.ebuild:
+ Removing the qmake call as it is done by upstreams configure now
*radiomixer-1.0 (18 May 2006)
diff --git a/media-sound/radiomixer/radiomixer-1.0.ebuild b/media-sound/radiomixer/radiomixer-1.0.ebuild
index 4814c32df0ba..7fed39fd0d3f 100644
--- a/media-sound/radiomixer/radiomixer-1.0.ebuild
+++ b/media-sound/radiomixer/radiomixer-1.0.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/radiomixer/radiomixer-1.0.ebuild,v 1.1 2006/05/18 11:47:27 jokey Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/radiomixer/radiomixer-1.0.ebuild,v 1.2 2006/05/18 12:00:35 jokey Exp $
inherit kde-functions eutils
@@ -85,16 +85,14 @@ src_compile() {
myconf="${myconf} --debug"
fi
- ./configure ${myconf}
- einfo "Using QTDIR: '$QTDIR'."
-
# Make sure we use the right qt version
PATH=${QTDIR}/bin:${PATH}
LD_LIBRARY_PATH=${QTDIR}/lib:${LD_LIBRARY_PATH}
DYLD_LIBRARY_PATH=${QTDIR}/lib:${DYLD_LIBRARY_PATH}
export QTDIR PATH LD_LIBRARY_PATH DYLD_LIBRARY_PATH
+ einfo "Using QTDIR: '$QTDIR'."
- ${QTDIR}/bin/qmake -unix radiomixer.pro || die "qmake failed"
+ ./configure ${myconf}
emake || die "emake failed"
}