summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-08 00:33:45 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-08 00:33:45 +0000
commitf4bb96cea8c2a23fbdb0d40b8d4c69a17b6e5b5d (patch)
tree869b57bfbc9302c309b3d8b84c47b6af19ad06d3 /media-plugins
parentversion bump. Note this ebuild and app-misc/glimpse both provide /usr/bin/agr... (diff)
downloadhistorical-f4bb96cea8c2a23fbdb0d40b8d4c69a17b6e5b5d.tar.gz
historical-f4bb96cea8c2a23fbdb0d40b8d4c69a17b6e5b5d.tar.bz2
historical-f4bb96cea8c2a23fbdb0d40b8d4c69a17b6e5b5d.zip
Fix use invocation
Diffstat (limited to 'media-plugins')
-rw-r--r--media-plugins/mythdvd/ChangeLog5
-rw-r--r--media-plugins/mythdvd/Manifest8
-rw-r--r--media-plugins/mythdvd/mythdvd-0.13.ebuild6
3 files changed, 11 insertions, 8 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/Manifest b/media-plugins/mythdvd/Manifest
index 6112f78cb4b6..7538dcec848d 100644
--- a/media-plugins/mythdvd/Manifest
+++ b/media-plugins/mythdvd/Manifest
@@ -1,7 +1,7 @@
-MD5 fb4b5f49808d1cf354631ebf3d207482 mythdvd-0.13.ebuild 2401
-MD5 18ee7e05fbe76faaf43f474753a51c33 mythdvd-0.15.ebuild 1302
-MD5 2d9f0b30b62ca33e8dc6411e22554133 mythdvd-0.14.ebuild 1305
-MD5 dfa732f88bd35230854ef06a0af4d330 ChangeLog 1556
+MD5 1b6f33e94477f96dce8ce35cc41664e9 mythdvd-0.13.ebuild 2384
+MD5 01ce0d979c59a3e5edc0a40762511092 mythdvd-0.15.ebuild 1301
+MD5 de158003746e24caed66d8bc2ee1ac1f mythdvd-0.14.ebuild 1304
+MD5 a6f19579fd2230509f1644d1ee18225f ChangeLog 1652
MD5 20e2255501865de5b568424821abf69d metadata.xml 161
MD5 afa9416eab98d5f2ad7a39bc35be2561 files/digest-mythdvd-0.13 65
MD5 11e5f49a3ebb04645d97007cb08afdd7 files/digest-mythdvd-0.14 65
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"