From c0de863211d190b942ee419266b2ae4f102ef010 Mon Sep 17 00:00:00 2001 From: Max Kalika Date: Mon, 20 Oct 2003 03:27:43 +0000 Subject: Bump to version 0.12. --- media-plugins/mythvideo/mythvideo-0.12.ebuild | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 media-plugins/mythvideo/mythvideo-0.12.ebuild (limited to 'media-plugins/mythvideo/mythvideo-0.12.ebuild') diff --git a/media-plugins/mythvideo/mythvideo-0.12.ebuild b/media-plugins/mythvideo/mythvideo-0.12.ebuild new file mode 100644 index 000000000000..f21218d9e944 --- /dev/null +++ b/media-plugins/mythvideo/mythvideo-0.12.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.12.ebuild,v 1.1 2003/10/20 03:25:23 max Exp $ + +inherit flag-o-matic + +DESCRIPTION="Video player module for MythTV." +HOMEPAGE="http://www.mythtv.org/" +SRC_URI="http://www.mythtv.org/mc/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND=">=sys-apps/sed-4 + || ( media-video/mplayer media-video/xine-ui ) + || ( >=media-tv/mythtv-${PV} >=media-tv/mythfrontend-${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() { + local cpu="`get-flag march`" + if [ ! -z "${cpu}" ] ; then + sed -e "s:pentiumpro:${cpu}:g" -i "settings.pro" || die "sed failed" + fi + + qmake -o "Makefile" "${PN}.pro" + emake || die "compile problem" +} + +src_install () { + einstall INSTALL_ROOT="${D}" + + insinto "/usr/share/mythtv/database/${PN}" + doins videodb/*.sql + + dodoc COPYING README UPGRADING + newdoc videodb/README README.db +} + +pkg_postinst() { + einfo "If this is the first time you install MythVideo," + einfo "you need to add /usr/share/mythtv/database/${PN}/metadata.sql" + einfo "to your MythTV database." + einfo + einfo "You might run 'mysql < /usr/share/mythtv/database/${PN}/metadata.sql'" + einfo + einfo "If you're upgrading from an older version and for more" + einfo "setup and usage instructions, please refer to:" + einfo " /usr/share/doc/${PF}/README.gz" + einfo " /usr/share/doc/${PF}/README.db.gz" + ewarn "This part is important as there might be database changes" + ewarn "which need to be performed or this package will not work" + ewarn "properly." + echo +} -- cgit v1.2.3-65-gdbad