diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-06-01 17:25:48 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-06-01 17:25:48 +0000 |
commit | 77e58d06afcaf30c2c8c8c7831b90484c7c3a27e (patch) | |
tree | a2e46eb1962dc953ee699cfa545b6fd775d2b0f7 /media-plugins/mythvideo | |
parent | Version bump (diff) | |
download | gentoo-2-77e58d06afcaf30c2c8c8c7831b90484c7c3a27e.tar.gz gentoo-2-77e58d06afcaf30c2c8c8c7831b90484c7c3a27e.tar.bz2 gentoo-2-77e58d06afcaf30c2c8c8c7831b90484c7c3a27e.zip |
Version bump and cleanup.
Diffstat (limited to 'media-plugins/mythvideo')
-rw-r--r-- | media-plugins/mythvideo/ChangeLog | 8 | ||||
-rw-r--r-- | media-plugins/mythvideo/Manifest | 2 | ||||
-rw-r--r-- | media-plugins/mythvideo/files/digest-mythvideo-0.15.1 | 1 | ||||
-rw-r--r-- | media-plugins/mythvideo/mythvideo-0.11.ebuild | 65 | ||||
-rw-r--r-- | media-plugins/mythvideo/mythvideo-0.12.ebuild | 64 | ||||
-rw-r--r-- | media-plugins/mythvideo/mythvideo-0.15.1.ebuild | 42 |
6 files changed, 52 insertions, 130 deletions
diff --git a/media-plugins/mythvideo/ChangeLog b/media-plugins/mythvideo/ChangeLog index 37f8de110003..bb25ca468722 100644 --- a/media-plugins/mythvideo/ChangeLog +++ b/media-plugins/mythvideo/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/mythvideo # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.13 2004/04/20 17:46:24 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.14 2004/06/01 17:22:04 aliz Exp $ + +*mythvideo-0.15.1 (01 Jun 2004) + + 01 Jun 2004; Daniel Ahlberg <aliz@gentoo.org> mythvideo-0.11.ebuild, + mythvideo-0.12.ebuild, mythvideo-0.15.1.ebuild: + Version bump and cleanups. 20 Apr 2004; Jeremy Huddleston <eradicator@gentoo.org> mythvideo-0.11.ebuild, mythvideo-0.12.ebuild, mythvideo-0.13.ebuild, diff --git a/media-plugins/mythvideo/Manifest b/media-plugins/mythvideo/Manifest index 56ff4e6569b6..638c195cf35d 100644 --- a/media-plugins/mythvideo/Manifest +++ b/media-plugins/mythvideo/Manifest @@ -1,3 +1,4 @@ +MD5 5fe367c089ba59c9e5b0489fb7cfe6d4 mythvideo-0.15.1.ebuild 1053 MD5 8293832fbcff7fa04a63924946518f0e mythvideo-0.12.ebuild 1782 MD5 5fe367c089ba59c9e5b0489fb7cfe6d4 mythvideo-0.14.ebuild 1053 MD5 ab880b645c727db4b27e8b71f91289a6 mythvideo-0.11.ebuild 1765 @@ -8,3 +9,4 @@ MD5 1c1055ed7527e3c6e5c556e1f79456bc files/digest-mythvideo-0.11 67 MD5 8b1f40b48872fd36d6dfd997ee675a30 files/digest-mythvideo-0.12 67 MD5 a8800f5c5151851b8e57a6a777fde3b0 files/digest-mythvideo-0.13 67 MD5 51fbad420f3d94ef8747f16c24ee8c18 files/digest-mythvideo-0.14 67 +MD5 e15e758ba887eb0ff1df3ff4f24db090 files/digest-mythvideo-0.15.1 69 diff --git a/media-plugins/mythvideo/files/digest-mythvideo-0.15.1 b/media-plugins/mythvideo/files/digest-mythvideo-0.15.1 new file mode 100644 index 000000000000..cef27e83c7fc --- /dev/null +++ b/media-plugins/mythvideo/files/digest-mythvideo-0.15.1 @@ -0,0 +1 @@ +MD5 500a2f7206a08c0be495c44b5cb35cc7 mythvideo-0.15.1.tar.bz2 218076 diff --git a/media-plugins/mythvideo/mythvideo-0.11.ebuild b/media-plugins/mythvideo/mythvideo-0.11.ebuild deleted file mode 100644 index 043b4d38a096..000000000000 --- a/media-plugins/mythvideo/mythvideo-0.11.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.11.ebuild,v 1.5 2004/04/20 17:46:24 eradicator Exp $ - -IUSE="" - -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() { - 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" - - emake || die "compile problem" -} - -src_install () { - einstall INSTALL_ROOT="${D}" - - insinto "/usr/share/mythtv/database/${PN}" - doins videodb/*.sql - - dodoc COPYING README - 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 -} diff --git a/media-plugins/mythvideo/mythvideo-0.12.ebuild b/media-plugins/mythvideo/mythvideo-0.12.ebuild deleted file mode 100644 index 28032c4407b3..000000000000 --- a/media-plugins/mythvideo/mythvideo-0.12.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2004 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.4 2004/04/20 17:46:24 eradicator Exp $ - -IUSE="" - -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 || get-flag mcpu`" - 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 -} diff --git a/media-plugins/mythvideo/mythvideo-0.15.1.ebuild b/media-plugins/mythvideo/mythvideo-0.15.1.ebuild new file mode 100644 index 000000000000..31eb896c0e0d --- /dev/null +++ b/media-plugins/mythvideo/mythvideo-0.15.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/mythvideo-0.15.1.ebuild,v 1.1 2004/06/01 17:22:04 aliz Exp $ + +IUSE="" + +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} && cd "${S}" + + 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 || get-flag mcpu`" + 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}" + dodoc COPYING README UPGRADING +} |