diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 00:34:49 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-08 00:34:49 +0000 |
commit | 15f4b335d4a96b8e1c0696c43b12066a0e0e7ad9 (patch) | |
tree | 31e6385114ae48156a0a9852614a9ceae57583d0 /media-plugins/mythdvd | |
parent | version bump. Note this ebuild and app-misc/glimpse both provide /usr/bin/agr... (diff) | |
download | gentoo-2-15f4b335d4a96b8e1c0696c43b12066a0e0e7ad9.tar.gz gentoo-2-15f4b335d4a96b8e1c0696c43b12066a0e0e7ad9.tar.bz2 gentoo-2-15f4b335d4a96b8e1c0696c43b12066a0e0e7ad9.zip |
Fix use invocation
Diffstat (limited to 'media-plugins/mythdvd')
-rw-r--r-- | media-plugins/mythdvd/ChangeLog | 5 | ||||
-rw-r--r-- | media-plugins/mythdvd/mythdvd-0.13.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/media-plugins/mythdvd/ChangeLog b/media-plugins/mythdvd/ChangeLog index 34c91d48568e..5f01369989b0 100644 --- a/media-plugins/mythdvd/ChangeLog +++ b/media-plugins/mythdvd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-plugins/mythdvd # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/ChangeLog,v 1.11 2004/06/01 17:13:13 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/ChangeLog,v 1.12 2004/06/08 00:33:45 agriffis Exp $ + + 07 Jun 2004; Aron Griffis <agriffis@gentoo.org> mythdvd-0.13.ebuild: + Fix use invocation *mythdvd-0.15 (01 Jun 2004) diff --git a/media-plugins/mythdvd/mythdvd-0.13.ebuild b/media-plugins/mythdvd/mythdvd-0.13.ebuild index a9beb27698b0..ef7267d482e6 100644 --- a/media-plugins/mythdvd/mythdvd-0.13.ebuild +++ b/media-plugins/mythdvd/mythdvd-0.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/mythdvd-0.13.ebuild,v 1.3 2004/04/26 18:16:38 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/mythdvd-0.13.ebuild,v 1.4 2004/06/08 00:33:45 agriffis Exp $ inherit flag-o-matic @@ -39,11 +39,11 @@ src_compile() { qmake -o "Makefile" "${PN}.pro" - if [ "`use alsa`" ] ; then + if use alsa ; then echo "CONFIG += using_alsa" >> settings.pro echo "EXTRA_LIBS += -lasound" >> settings.pro fi - if [ "`use lirc`" ] ; then + if use lirc ; then sed -e "s:#CONFIG += using_lirc:CONFIG += using_lirc:" \ -e "s:#EXTRA_LIBS += -llirc_client:EXTRA_LIBS += -llirc_client:" \ -i "settings.pro" || die "enable lirc sed failed" |