diff options
author | Max Kalika <max@gentoo.org> | 2003-10-28 16:18:28 +0000 |
---|---|---|
committer | Max Kalika <max@gentoo.org> | 2003-10-28 16:18:28 +0000 |
commit | e26c96ccf93dfee906c7e0a164d54119b26a0445 (patch) | |
tree | fedb607e13b18fe8b12f61ed2228dc9178dfe3bc /media-plugins | |
parent | Remove DVB depend. Extend CPU detection. Fix potential portage bug in pkg_set... (diff) | |
download | historical-e26c96ccf93dfee906c7e0a164d54119b26a0445.tar.gz historical-e26c96ccf93dfee906c7e0a164d54119b26a0445.tar.bz2 historical-e26c96ccf93dfee906c7e0a164d54119b26a0445.zip |
Extend CPU detection.
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/mythdvd/ChangeLog | 5 | ||||
-rw-r--r-- | media-plugins/mythdvd/Manifest | 4 | ||||
-rw-r--r-- | media-plugins/mythdvd/mythdvd-0.12.ebuild | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/media-plugins/mythdvd/ChangeLog b/media-plugins/mythdvd/ChangeLog index afc82a81356f..3515383fcc9d 100644 --- a/media-plugins/mythdvd/ChangeLog +++ b/media-plugins/mythdvd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-plugins/mythdvd # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/ChangeLog,v 1.3 2003/10/20 03:25:53 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/ChangeLog,v 1.4 2003/10/28 16:18:27 max Exp $ + + 28 Oct 2003; Max Kalika <max@gentoo.org> mythdvd-0.12.ebuild: + Extend CPU detection. *mythdvd-0.12 (19 Oct 2003) diff --git a/media-plugins/mythdvd/Manifest b/media-plugins/mythdvd/Manifest index c02a4de064fc..f147ab27a5aa 100644 --- a/media-plugins/mythdvd/Manifest +++ b/media-plugins/mythdvd/Manifest @@ -1,6 +1,6 @@ MD5 00fc0fff830f25508d04a99963a988fc mythdvd-0.11.ebuild 1962 -MD5 48f09e2e822d95db6cee31c658a96119 mythdvd-0.12.ebuild 2357 -MD5 cfb665ed74c99aeec820543235a617ba ChangeLog 572 +MD5 3ea44914896929d3a547f9a964714f44 mythdvd-0.12.ebuild 2374 +MD5 86256dd7ce471b2138f11684b6f79f23 ChangeLog 661 MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 29d1ec475eee7e6e4d5b6a605611c4c7 files/digest-mythdvd-0.11 64 MD5 43523be8d2e4958df76e6e1b2b63791c files/digest-mythdvd-0.12 65 diff --git a/media-plugins/mythdvd/mythdvd-0.12.ebuild b/media-plugins/mythdvd/mythdvd-0.12.ebuild index 789096547f2a..c7ef74431cd5 100644 --- a/media-plugins/mythdvd/mythdvd-0.12.ebuild +++ b/media-plugins/mythdvd/mythdvd-0.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/mythdvd-0.12.ebuild,v 1.1 2003/10/20 03:25:53 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/mythdvd-0.12.ebuild,v 1.2 2003/10/28 16:18:27 max Exp $ inherit flag-o-matic @@ -32,7 +32,7 @@ src_compile() { local myconf="--enable-vcd" myconf="${myconf} `use_enable transcode`" - local cpu="`get-flag march`" + local cpu="`get-flag march || get-flag mcpu`" if [ "${cpu}" ] ; then sed -e "s:pentiumpro:${cpu}:g" -i "settings.pro" || die "sed failed" fi |