diff options
author | Andrej Kacian <ticho@gentoo.org> | 2006-04-07 21:53:00 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2006-04-07 21:53:00 +0000 |
commit | e29879569d876ec9988d57ece2380e0073ac3b52 (patch) | |
tree | cb73d4c83fe89684ebd5a04051415895f3f276af /media-sound/qmpdclient | |
parent | Remove ciaranm from metadata.xml. (diff) | |
download | gentoo-2-e29879569d876ec9988d57ece2380e0073ac3b52.tar.gz gentoo-2-e29879569d876ec9988d57ece2380e0073ac3b52.tar.bz2 gentoo-2-e29879569d876ec9988d57ece2380e0073ac3b52.zip |
Removed debug USE flag for now, see comment #8 in bug #122048. Added ~amd64 keyword, tested by Avuton Olrich <avuton at gmail.com>.
(Portage version: 2.1_pre7-r4)
Diffstat (limited to 'media-sound/qmpdclient')
-rw-r--r-- | media-sound/qmpdclient/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/qmpdclient/qmpdclient-1.0.3.ebuild | 14 |
2 files changed, 12 insertions, 8 deletions
diff --git a/media-sound/qmpdclient/ChangeLog b/media-sound/qmpdclient/ChangeLog index 491ea8a9460a..5db9064e24e4 100644 --- a/media-sound/qmpdclient/ChangeLog +++ b/media-sound/qmpdclient/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/qmpdclient # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.1 2006/04/07 21:40:16 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.2 2006/04/07 21:53:00 ticho Exp $ + + 07 Apr 2006; Andrej Kacian <ticho@gentoo.org> qmpdclient-1.0.3.ebuild: + Removed debug USE flag for now, see comment #8 in bug #122048. Added ~amd64 + keyword, tested by Avuton Olrich <avuton at gmail.com>. *qmpdclient-1.0.3 (07 Apr 2006) diff --git a/media-sound/qmpdclient/qmpdclient-1.0.3.ebuild b/media-sound/qmpdclient/qmpdclient-1.0.3.ebuild index c3333ea00587..e35de2cce48b 100644 --- a/media-sound/qmpdclient/qmpdclient-1.0.3.ebuild +++ b/media-sound/qmpdclient/qmpdclient-1.0.3.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/qmpdclient/qmpdclient-1.0.3.ebuild,v 1.1 2006/04/07 21:40:16 ticho Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.0.3.ebuild,v 1.2 2006/04/07 21:53:00 ticho Exp $ inherit eutils @@ -10,16 +10,16 @@ SRC_URI="http://havtknut.tihlde.org/software/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86" -IUSE="debug" +KEYWORDS="~amd64 ~x86" +IUSE="" DEPEND=">=x11-libs/qt-4.1" src_compile() { - if use debug; then - sed -ie 's/CONFIG -= debug/CONFIG += debug/' ${S}/src/src.pro || \ - die 'sed failed in debug' - fi +# if use debug; then +# sed -ie 's/CONFIG -= debug/CONFIG += debug/' ${S}/src/src.pro || \ +# die 'sed failed in debug' +# fi ./configure || die "configure failed" emake || die "make failed" |