diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-03 13:51:53 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-03 13:51:53 +0000 |
commit | 38df9c17b2d1af6d2b0641e2390d258a55f5c09f (patch) | |
tree | 81ee6eda192c11f8a5797a152812d4801ec72694 /media-plugins | |
parent | Introduced CVS snapshot (diff) | |
download | historical-38df9c17b2d1af6d2b0641e2390d258a55f5c09f.tar.gz historical-38df9c17b2d1af6d2b0641e2390d258a55f5c09f.tar.bz2 historical-38df9c17b2d1af6d2b0641e2390d258a55f5c09f.zip |
Version bump
Diffstat (limited to 'media-plugins')
28 files changed, 491 insertions, 7 deletions
diff --git a/media-plugins/mythdvd/ChangeLog b/media-plugins/mythdvd/ChangeLog index 0f1324756686..964ba5785e2a 100644 --- a/media-plugins/mythdvd/ChangeLog +++ b/media-plugins/mythdvd/ChangeLog @@ -1,6 +1,11 @@ # 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.6 2004/01/15 18:04:10 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/ChangeLog,v 1.7 2004/02/03 13:51:53 aliz Exp $ + +*mythdvd-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythdvd-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythdvd-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythdvd/Manifest b/media-plugins/mythdvd/Manifest index 989f250a74d6..800526dada9e 100644 --- a/media-plugins/mythdvd/Manifest +++ b/media-plugins/mythdvd/Manifest @@ -1,8 +1,10 @@ MD5 bdca7d5accce6ff791b81a2acc8b6df7 mythdvd-0.11.ebuild 1962 MD5 2dd8b7f31de6a77c3ed57ef51accbf87 mythdvd-0.13.ebuild 2374 MD5 7e81b395052da2d61bbae4268e107fef mythdvd-0.12.ebuild 2374 +MD5 c37d41e38874102effe3ee1d34cd2908 mythdvd-0.14.ebuild 2375 MD5 a8817c259a600a3dd029574660622881 ChangeLog 863 MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 29d1ec475eee7e6e4d5b6a605611c4c7 files/digest-mythdvd-0.11 64 MD5 43523be8d2e4958df76e6e1b2b63791c files/digest-mythdvd-0.12 65 MD5 afa9416eab98d5f2ad7a39bc35be2561 files/digest-mythdvd-0.13 65 +MD5 11e5f49a3ebb04645d97007cb08afdd7 files/digest-mythdvd-0.14 65 diff --git a/media-plugins/mythdvd/files/digest-mythdvd-0.14 b/media-plugins/mythdvd/files/digest-mythdvd-0.14 new file mode 100644 index 000000000000..f860d531c16d --- /dev/null +++ b/media-plugins/mythdvd/files/digest-mythdvd-0.14 @@ -0,0 +1 @@ +MD5 3fcbd26eabcbf14e43707385631590ca mythdvd-0.14.tar.bz2 121833 diff --git a/media-plugins/mythdvd/mythdvd-0.14.ebuild b/media-plugins/mythdvd/mythdvd-0.14.ebuild new file mode 100644 index 000000000000..829395919a13 --- /dev/null +++ b/media-plugins/mythdvd/mythdvd-0.14.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythdvd/mythdvd-0.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz 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="alsa lirc 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:g" -i "${i}" || die "sed failed" + done +} + +src_compile() { + local myconf="--enable-vcd" + myconf="${myconf} `use_enable transcode`" + + local cpu="`get-flag march || get-flag mcpu`" + if [ "${cpu}" ] ; then + sed -e "s:pentiumpro:${cpu}:g" -i "settings.pro" || die "sed failed" + fi + + qmake -o "Makefile" "${PN}.pro" + + if [ "`use alsa`" ] ; then + echo "CONFIG += using_alsa" >> settings.pro + echo "EXTRA_LIBS += -lasound" >> settings.pro + fi + if [ "`use lirc`" ] ; then + sed -e "s:#CONFIG += using_lirc:CONFIG += using_lirc:" \ + -e "s:#EXTRA_LIBS += -llirc_client:EXTRA_LIBS += -llirc_client:" \ + -i "settings.pro" || die "enable lirc sed failed" + fi + + econf ${myconf} + 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 +} diff --git a/media-plugins/mythgallery/ChangeLog b/media-plugins/mythgallery/ChangeLog index 810b3c7a42de..31851a875f80 100644 --- a/media-plugins/mythgallery/ChangeLog +++ b/media-plugins/mythgallery/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/mythgallery # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgallery/ChangeLog,v 1.10 2004/01/15 18:04:20 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgallery/ChangeLog,v 1.11 2004/02/03 13:51:53 aliz Exp $ + +*mythgallery-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythgallery-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythgallery-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythgallery/Manifest b/media-plugins/mythgallery/Manifest index d7b938b800a2..18a9baa0dbfe 100644 --- a/media-plugins/mythgallery/Manifest +++ b/media-plugins/mythgallery/Manifest @@ -1,3 +1,4 @@ +MD5 dcf7abf97eedefca165f92c35732bfb9 mythgallery-0.14.ebuild 1695 MD5 ba206854f699cc17ed156eed8cac28e5 mythgallery-0.11.ebuild 1691 MD5 b474b37b70df35f655c1b838e53c5855 mythgallery-0.13.ebuild 1694 MD5 3656d3dd60d7e260d895dbc48c25c17f mythgallery-0.12.ebuild 1694 @@ -6,3 +7,4 @@ MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 f367099e5641367ed71e682eed2243e5 files/digest-mythgallery-0.11 67 MD5 2ead189a9b4ae726aa0565a7f4d7a78f files/digest-mythgallery-0.12 68 MD5 be630e30bf64c7e32e3675cdd626bf02 files/digest-mythgallery-0.13 68 +MD5 289cc198151b47c06f4b8767ab79d0be files/digest-mythgallery-0.14 68 diff --git a/media-plugins/mythgallery/files/digest-mythgallery-0.14 b/media-plugins/mythgallery/files/digest-mythgallery-0.14 new file mode 100644 index 000000000000..63aab2c4a836 --- /dev/null +++ b/media-plugins/mythgallery/files/digest-mythgallery-0.14 @@ -0,0 +1 @@ +MD5 5c89b632e00d43ea942187ca7f7da813 mythgallery-0.14.tar.bz2 42385 diff --git a/media-plugins/mythgallery/mythgallery-0.14.ebuild b/media-plugins/mythgallery/mythgallery-0.14.ebuild new file mode 100644 index 000000000000..57c9e4f50c15 --- /dev/null +++ b/media-plugins/mythgallery/mythgallery-0.14.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgallery/mythgallery-0.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz Exp $ + +inherit flag-o-matic + +DESCRIPTION="Gallery and slideshow 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-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:g" -i "${i}" || die "sed failed" + done +} + +src_compile() { + local cpu="`get-flag march || get-flag mcpu`" + if [ "${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 database/*.sql + + dodoc COPYING README UPGRADING +} + +pkg_postinst() { + einfo "If this is the first time you install MythGallery," + einfo "you need to add /usr/share/mythtv/database/${PN}/gallery.sql" + einfo "to your MythTV database." + einfo + einfo "You might run 'mysql < /usr/share/mythtv/database/${PN}/gallery.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}/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 +} diff --git a/media-plugins/mythgame/ChangeLog b/media-plugins/mythgame/ChangeLog index ae9f3d80ae32..b39fa9048929 100644 --- a/media-plugins/mythgame/ChangeLog +++ b/media-plugins/mythgame/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/mythgame # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgame/ChangeLog,v 1.10 2004/01/15 18:04:36 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgame/ChangeLog,v 1.11 2004/02/03 13:51:53 aliz Exp $ + +*mythgame-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythgame-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythgame-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythgame/Manifest b/media-plugins/mythgame/Manifest index 53e6e7f50116..d470c7b54149 100644 --- a/media-plugins/mythgame/Manifest +++ b/media-plugins/mythgame/Manifest @@ -1,4 +1,5 @@ MD5 460b6a4bd044f61e7a12918894b083a8 mythgame-0.12.ebuild 1979 +MD5 184c70d394443de35b1cdd1ab470fbb1 mythgame-0.14.ebuild 1980 MD5 48e8b79e645e8f6bd87b5a82f2af177d mythgame-0.11.ebuild 1976 MD5 1bdcecbda5a923f58fb1b98217bda045 mythgame-0.13.ebuild 1979 MD5 d5aba18183f7797f30e1d021d903b60a ChangeLog 2069 @@ -6,3 +7,4 @@ MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 2bd60d4f779ab52e53d15145940b8946 files/digest-mythgame-0.11 65 MD5 ace6a7f7f30d271f0c3e7bb1ea4ea89b files/digest-mythgame-0.12 65 MD5 ba98a6a8ff627a1e603a490d0c21a131 files/digest-mythgame-0.13 65 +MD5 b2fb16ec79b3ec5d217bc4d12d5701a9 files/digest-mythgame-0.14 65 diff --git a/media-plugins/mythgame/files/digest-mythgame-0.14 b/media-plugins/mythgame/files/digest-mythgame-0.14 new file mode 100644 index 000000000000..bf9c2bc8f9b8 --- /dev/null +++ b/media-plugins/mythgame/files/digest-mythgame-0.14 @@ -0,0 +1 @@ +MD5 9b3428011cf7bf61aa4868c394e75cfa mythgame-0.14.tar.bz2 65133 diff --git a/media-plugins/mythgame/mythgame-0.14.ebuild b/media-plugins/mythgame/mythgame-0.14.ebuild new file mode 100644 index 000000000000..3df83bb5a391 --- /dev/null +++ b/media-plugins/mythgame/mythgame-0.14.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgame/mythgame-0.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz Exp $ + +inherit flag-o-matic + +DESCRIPTION="Game emulator 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-libs/zlib + >=sys-apps/sed-4 + || ( >=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:g" -i "${i}" || die "sed failed" + done +} + +src_compile() { + local cpu="`get-flag march || get-flag mcpu`" + if [ "${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 gamedb/*.sql + + dodoc README UPGRADING gamelist.xml +} + +pkg_postinst() { + einfo "If this is the first time you install MythGame," + einfo "you need to add /usr/share/mythtv/database/${PN}/metadata.sql" + einfo "/usr/share/mythtv/database/${PN}/nesdb.sql and " + einfo "/usr/share/mythtv/database/${PN}/snesdata.sql" + einfo "to your MythTV database in that order." + einfo + einfo "You might run in this order:" + einfo "'mysql < /usr/share/mythtv/database/${PN}/gamemetadata.sql'" + einfo "'mysql < /usr/share/mythtv/database/${PN}/nesdb.sql'" + einfo "'mysql < /usr/share/mythtv/database/${PN}/snesdata.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}/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 +} diff --git a/media-plugins/mythmusic/ChangeLog b/media-plugins/mythmusic/ChangeLog index 0bf57f5b4493..bd7dda810b08 100644 --- a/media-plugins/mythmusic/ChangeLog +++ b/media-plugins/mythmusic/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/mythmusic # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/ChangeLog,v 1.12 2004/01/15 18:04:45 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/ChangeLog,v 1.13 2004/02/03 13:51:53 aliz Exp $ + +*mythmusic-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythmusic-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythmusic-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythmusic/Manifest b/media-plugins/mythmusic/Manifest index b40b4148cbd9..66701e6c1907 100644 --- a/media-plugins/mythmusic/Manifest +++ b/media-plugins/mythmusic/Manifest @@ -1,4 +1,5 @@ MD5 e8ce4302ca0617734d7800026f566219 mythmusic-0.12.ebuild 2275 +MD5 9109961ed0935735d1dece2b9c66198b mythmusic-0.14.ebuild 2276 MD5 060bfd6f909139f3c1afd579539bb71b mythmusic-0.11.ebuild 2167 MD5 04145c3ff3811b355a80aefe79ec1f91 mythmusic-0.13.ebuild 2275 MD5 890eb47ff5395ff02afc971df6e8f248 ChangeLog 2500 @@ -6,3 +7,4 @@ MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 d3782b76395f4d656284b24c9ee8e7b4 files/digest-mythmusic-0.11 67 MD5 84fa19b3a9087c7357d9de3c374abee2 files/digest-mythmusic-0.12 67 MD5 2019c295b59aab34531f15790e8d79f0 files/digest-mythmusic-0.13 67 +MD5 47078eb5bb471d527803f268e41c5436 files/digest-mythmusic-0.14 67 diff --git a/media-plugins/mythmusic/files/digest-mythmusic-0.14 b/media-plugins/mythmusic/files/digest-mythmusic-0.14 new file mode 100644 index 000000000000..0a1860da20a1 --- /dev/null +++ b/media-plugins/mythmusic/files/digest-mythmusic-0.14 @@ -0,0 +1 @@ +MD5 25b2512aae8c39b6b423356f88be542c mythmusic-0.14.tar.bz2 213506 diff --git a/media-plugins/mythmusic/mythmusic-0.14.ebuild b/media-plugins/mythmusic/mythmusic-0.14.ebuild new file mode 100644 index 000000000000..3664d62ee979 --- /dev/null +++ b/media-plugins/mythmusic/mythmusic-0.14.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/mythmusic-0.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz Exp $ + +inherit flag-o-matic + +DESCRIPTION="Music 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="opengl sdl X" + +DEPEND=">=media-sound/cdparanoia-3.9.8 + >=media-libs/libmad-0.14.2b + >=media-libs/libid3tag-0.14.2b + >=media-libs/libvorbis-1.0 + >=media-libs/libcdaudio-0.99.6 + >=media-libs/flac-1.1.0 + >=sys-apps/sed-4 + X? ( =dev-libs/fftw-2* ) + opengl? ( virtual/opengl =dev-libs/fftw-2* ) + sdl? ( >=media-libs/libsdl-1.2.5 ) + || ( >=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 myconf + myconf="${myconf} `use_enable X fftw`" + myconf="${myconf} `use_enable opengl`" + myconf="${myconf} `use_enable sdl`" + + # Fix bug 31952 + replace-flags mcpu=pentium4 mcpu=pentium3 + replace-flags march=pentium4 march=pentium3 + local cpu="`get-flag march || get-flag mcpu`" + if [ "${cpu}" ] ; then + sed -e "s:pentiumpro:${cpu}:g" -i "settings.pro" || die "sed failed" + fi + + qmake -o "Makefile" "${PN}.pro" + + econf ${myconf} + emake || die "compile problem" +} + +src_install() { + einstall INSTALL_ROOT="${D}" + + insinto "/usr/share/mythtv/database/${PN}" + doins musicdb/*.sql + + dodoc AUTHORS COPYING README UPGRADING + newdoc musicdb/README README.db +} + +pkg_postinst() { + einfo "If this is the first time you install MythMusic," + 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}/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." +} diff --git a/media-plugins/mythnews/ChangeLog b/media-plugins/mythnews/ChangeLog index ef16df0b39e6..e062046e0f84 100644 --- a/media-plugins/mythnews/ChangeLog +++ b/media-plugins/mythnews/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/mythnews # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythnews/ChangeLog,v 1.4 2004/01/15 18:04:54 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythnews/ChangeLog,v 1.5 2004/02/03 13:51:53 aliz Exp $ + +*mythnews-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythnews-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythnews-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythnews/Manifest b/media-plugins/mythnews/Manifest index e718321b8adc..1a4fd3823934 100644 --- a/media-plugins/mythnews/Manifest +++ b/media-plugins/mythnews/Manifest @@ -1,6 +1,8 @@ MD5 fe8d35b8d97952957808b054cf75a66d mythnews-0.13.ebuild 990 MD5 bb1229e6f5c1dc7c4ac9e0050132ba04 mythnews-0.12.ebuild 990 +MD5 cb649e8551a42b8ff3194f419e3e5e6d mythnews-0.14.ebuild 991 MD5 a7c56045c4209fb70a63ce3450350ec3 ChangeLog 646 MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 4173f85528c0fed69c65345d080ddc6b files/digest-mythnews-0.12 65 MD5 ba1aaa752cf2b8e1d989d5db1cb23b5d files/digest-mythnews-0.13 65 +MD5 983d80ea01fdfb7d74da92ccc5dc98a0 files/digest-mythnews-0.14 65 diff --git a/media-plugins/mythnews/files/digest-mythnews-0.14 b/media-plugins/mythnews/files/digest-mythnews-0.14 new file mode 100644 index 000000000000..21f72c2ed862 --- /dev/null +++ b/media-plugins/mythnews/files/digest-mythnews-0.14 @@ -0,0 +1 @@ +MD5 f78e7c40abd2900c7fe1675d3d5ec943 mythnews-0.14.tar.bz2 30865 diff --git a/media-plugins/mythnews/mythnews-0.14.ebuild b/media-plugins/mythnews/mythnews-0.14.ebuild new file mode 100644 index 000000000000..82114aa6f54e --- /dev/null +++ b/media-plugins/mythnews/mythnews-0.14.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythnews/mythnews-0.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz Exp $ + +inherit flag-o-matic + +DESCRIPTION="RSS feed news reading 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-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:g" -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 AUTHORS COPYING README ChangeLog +} diff --git a/media-plugins/mythvideo/ChangeLog b/media-plugins/mythvideo/ChangeLog index 800b83e88c52..8444a73d041d 100644 --- a/media-plugins/mythvideo/ChangeLog +++ b/media-plugins/mythvideo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/mythvideo # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.9 2004/01/15 18:05:03 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythvideo/ChangeLog,v 1.10 2004/02/03 13:51:53 aliz Exp $ + +*mythvideo-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythvideo-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythvideo-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythvideo/Manifest b/media-plugins/mythvideo/Manifest index 1e0f61913b04..832711a3eb76 100644 --- a/media-plugins/mythvideo/Manifest +++ b/media-plugins/mythvideo/Manifest @@ -1,4 +1,5 @@ MD5 711c93bf7418cb1d2577e5b6204ac10e mythvideo-0.12.ebuild 1766 +MD5 38660fe948cdfa5b3522cf697fed3664 mythvideo-0.14.ebuild 1766 MD5 db1b0ed067864987f267f21c870f037b mythvideo-0.11.ebuild 1749 MD5 38660fe948cdfa5b3522cf697fed3664 mythvideo-0.13.ebuild 1766 MD5 6a449e83c27e7ae3a548b451076e666a ChangeLog 2303 @@ -6,3 +7,4 @@ MD5 20e2255501865de5b568424821abf69d metadata.xml 161 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 diff --git a/media-plugins/mythvideo/files/digest-mythvideo-0.14 b/media-plugins/mythvideo/files/digest-mythvideo-0.14 new file mode 100644 index 000000000000..4d8b81e7e736 --- /dev/null +++ b/media-plugins/mythvideo/files/digest-mythvideo-0.14 @@ -0,0 +1 @@ +MD5 aaaa60b11db1c76acacffc1185c7d9d6 mythvideo-0.14.tar.bz2 241309 diff --git a/media-plugins/mythvideo/mythvideo-0.14.ebuild b/media-plugins/mythvideo/mythvideo-0.14.ebuild new file mode 100644 index 000000000000..26bfe5e79fa9 --- /dev/null +++ b/media-plugins/mythvideo/mythvideo-0.14.ebuild @@ -0,0 +1,62 @@ +# 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.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz 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 || 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}/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 +} diff --git a/media-plugins/mythweather/ChangeLog b/media-plugins/mythweather/ChangeLog index c653b4e6028f..c0da3fea282d 100644 --- a/media-plugins/mythweather/ChangeLog +++ b/media-plugins/mythweather/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/mythweather # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythweather/ChangeLog,v 1.10 2004/01/15 18:05:22 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythweather/ChangeLog,v 1.11 2004/02/03 13:51:53 aliz Exp $ + +*mythweather-0.14 (03 Feb 2004) + + 03 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> mythweather-0.14.ebuild: + Version bump 15 Jan 2004; Max Kalika <max@gentoo.org> mythweather-0.13.ebuild: Bump to stable x86. diff --git a/media-plugins/mythweather/Manifest b/media-plugins/mythweather/Manifest index 4283f6f23abb..2c71896803d5 100644 --- a/media-plugins/mythweather/Manifest +++ b/media-plugins/mythweather/Manifest @@ -1,4 +1,5 @@ MD5 f6fbefd390920774fe46b900b7576480 mythweather-0.12.ebuild 979 +MD5 29b4e67c971035852ee6483fb1751703 mythweather-0.14.ebuild 980 MD5 066b932d813da05a4b9312ca84cc8772 mythweather-0.11.ebuild 972 MD5 f99dc2880b910d30925e69c4651d3269 mythweather-0.13.ebuild 979 MD5 3dd8c9ee1e865ce89336886174237a22 ChangeLog 1976 @@ -6,3 +7,4 @@ MD5 20e2255501865de5b568424821abf69d metadata.xml 161 MD5 6a31e4f0a87c61e3e7f0eb55dca2f03b files/digest-mythweather-0.11 69 MD5 916ba5d7844b0abae782627b8d1a21fe files/digest-mythweather-0.12 69 MD5 ea775d05013e97dd4c419804de2ed3b6 files/digest-mythweather-0.13 69 +MD5 1ab52ed2da7b97e38a6f31621371a400 files/digest-mythweather-0.14 69 diff --git a/media-plugins/mythweather/files/digest-mythweather-0.14 b/media-plugins/mythweather/files/digest-mythweather-0.14 new file mode 100644 index 000000000000..b95ce008f147 --- /dev/null +++ b/media-plugins/mythweather/files/digest-mythweather-0.14 @@ -0,0 +1 @@ +MD5 061303237fd11d4348d52e169368114b mythweather-0.14.tar.bz2 831104 diff --git a/media-plugins/mythweather/mythweather-0.14.ebuild b/media-plugins/mythweather/mythweather-0.14.ebuild new file mode 100644 index 000000000000..b459052d4261 --- /dev/null +++ b/media-plugins/mythweather/mythweather-0.14.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythweather/mythweather-0.14.ebuild,v 1.1 2004/02/03 13:51:53 aliz Exp $ + +inherit flag-o-matic + +DESCRIPTION="Weather forcast 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-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}" + dodoc AUTHORS COPYING README +} |