diff options
author | 2003-08-18 18:00:18 +0000 | |
---|---|---|
committer | 2003-08-18 18:00:18 +0000 | |
commit | 24f2a55f25bb0ca5c018fd2bd301630fe8b56083 (patch) | |
tree | 4d2b4e2f0a411137cf135a4acc131bee6fc9b8ac /media-plugins/mythdvd/mythdvd-0.11.ebuild | |
parent | Bump version to 0.11. (diff) | |
download | historical-24f2a55f25bb0ca5c018fd2bd301630fe8b56083.tar.gz historical-24f2a55f25bb0ca5c018fd2bd301630fe8b56083.tar.bz2 historical-24f2a55f25bb0ca5c018fd2bd301630fe8b56083.zip |
Initial version.
Diffstat (limited to 'media-plugins/mythdvd/mythdvd-0.11.ebuild')
-rw-r--r-- | media-plugins/mythdvd/mythdvd-0.11.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/media-plugins/mythdvd/mythdvd-0.11.ebuild b/media-plugins/mythdvd/mythdvd-0.11.ebuild new file mode 100644 index 000000000000..8ec8307a6af6 --- /dev/null +++ b/media-plugins/mythdvd/mythdvd-0.11.ebuild @@ -0,0 +1,70 @@ +# 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.11.ebuild,v 1.1 2003/08/18 18:00:00 max Exp $ + +inherit flag-o-matic + +DESCRIPTION="DVD 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" +IUSE="transcode" + +DEPEND="media-libs/libdvdread + >=sys-apps/sed-4 + >=media-plugins/mythvideo-${PV} + transcode? ( media-video/transcode ) + || ( media-video/mplayer media-video/xine-ui media-video/ogle ) + || ( >=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() { + + cpu="`get-flag march`" + if [ ! -z "${cpu}" ] ; then + sed -e "s:pentiumpro:${cpu}:g" -i "${S}/settings.pro" || die "sed failed" + fi + + qmake -o "${S}/Makefile" "${S}/${PN}.pro" + + econf "`use_enable transcode`" + emake || die "compile problem" +} + +src_install () { + einstall INSTALL_ROOT="${D}" + + insinto "/usr/share/mythtv/database/${PN}" + doins dvddb/*.sql + + dodoc AUTHORS COPYING README UPGRADING + newdoc dvddb/README README.db +} + +pkg_postinst() { + einfo "If this is the first time you install MythDVD," + 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" + einfo " /usr/share/doc/${PF}/UPGRADING.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 +} |