diff options
Diffstat (limited to 'media-tv/mythfrontend')
-rw-r--r-- | media-tv/mythfrontend/ChangeLog | 5 | ||||
-rw-r--r-- | media-tv/mythfrontend/Manifest | 4 | ||||
-rw-r--r-- | media-tv/mythfrontend/mythfrontend-0.10.ebuild | 12 |
3 files changed, 10 insertions, 11 deletions
diff --git a/media-tv/mythfrontend/ChangeLog b/media-tv/mythfrontend/ChangeLog index a151ecb83324..4e7a9be7799c 100644 --- a/media-tv/mythfrontend/ChangeLog +++ b/media-tv/mythfrontend/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-tv/mythfrontend # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/mythfrontend/ChangeLog,v 1.1 2003/08/07 23:08:40 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythfrontend/ChangeLog,v 1.2 2003/08/07 23:25:37 max Exp $ + + 07 Aug 2003; Max Kalika <max@gentoo.org> mythfrontend-0.10.ebuild: + Move the mythtv blocking to RDEPEND. *mythfrontend-0.10 (07 Aug 2003) diff --git a/media-tv/mythfrontend/Manifest b/media-tv/mythfrontend/Manifest index 02f0d699b588..136d8da299dd 100644 --- a/media-tv/mythfrontend/Manifest +++ b/media-tv/mythfrontend/Manifest @@ -1,3 +1,3 @@ -MD5 2a3af223f727988473e989712c8045fc mythfrontend-0.10.ebuild 1488 -MD5 f124b81c579a895f1bc34707a3fe1a0c ChangeLog 344 +MD5 c8b6f81d505742a7fe74d284aa5ab453 mythfrontend-0.10.ebuild 1503 +MD5 671e62bd90c06351195a5d8b6f175f24 ChangeLog 453 MD5 e14a28e72b9ac693884dc418dbeef119 files/digest-mythfrontend-0.10 65 diff --git a/media-tv/mythfrontend/mythfrontend-0.10.ebuild b/media-tv/mythfrontend/mythfrontend-0.10.ebuild index b5e7dfb03693..7bb2ab9ab089 100644 --- a/media-tv/mythfrontend/mythfrontend-0.10.ebuild +++ b/media-tv/mythfrontend/mythfrontend-0.10.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-tv/mythfrontend/mythfrontend-0.10.ebuild,v 1.1 2003/08/07 23:08:40 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythfrontend/mythfrontend-0.10.ebuild,v 1.2 2003/08/07 23:25:37 max Exp $ inherit flag-o-matic @@ -18,23 +18,22 @@ DEPEND="virtual/x11 >=media-sound/lame-3.92 >=media-libs/freetype-2.0 >=sys-apps/sed-4 - lcd? ( app-misc/lcdproc ) + lcd? ( app-misc/lcdproc )" + +RDEPEND="${DEPEND} !media-tv/mythtv" S="${WORKDIR}/mythtv-${PV}" src_unpack() { - unpack ${A} for i in `grep -lr usr/local "${S}"` ; do sed -e "s:usr/local:usr:" -i "${i}" || die "sed failed" done - } src_compile() { - cpu="`get-flag march`" if [ -n "${cpu}" ] ; then sed -e "s:pentiumpro:${cpu}:g" -i "${S}/settings.pro" || die "sed failed" @@ -46,11 +45,9 @@ src_compile() { # Parallel build doesn't work. make || die "compile problem" - } src_install() { - make INSTALL_ROOT="${D}" install || die "make install failed" dodir /etc/mythtv @@ -62,5 +59,4 @@ src_install() { dodoc AUTHORS COPYING FAQ README UPGRADING keys.txt docs/*.txt dohtml docs/*.html - } |