diff options
author | Max Kalika <max@gentoo.org> | 2003-08-18 18:07:15 +0000 |
---|---|---|
committer | Max Kalika <max@gentoo.org> | 2003-08-18 18:07:15 +0000 |
commit | 0b9ff7f26ebe9368b057444d355299f76f64d491 (patch) | |
tree | 8297ad0f5fd3430306366d5d0f17dde10155ea99 /media-plugins/mythmusic | |
parent | Manifest fix. (diff) | |
download | historical-0b9ff7f26ebe9368b057444d355299f76f64d491.tar.gz historical-0b9ff7f26ebe9368b057444d355299f76f64d491.tar.bz2 historical-0b9ff7f26ebe9368b057444d355299f76f64d491.zip |
Bump version to 0.11.
Diffstat (limited to 'media-plugins/mythmusic')
-rw-r--r-- | media-plugins/mythmusic/ChangeLog | 8 | ||||
-rw-r--r-- | media-plugins/mythmusic/Manifest | 4 | ||||
-rw-r--r-- | media-plugins/mythmusic/files/digest-mythmusic-0.11 | 1 | ||||
-rw-r--r-- | media-plugins/mythmusic/mythmusic-0.11.ebuild | 77 |
4 files changed, 88 insertions, 2 deletions
diff --git a/media-plugins/mythmusic/ChangeLog b/media-plugins/mythmusic/ChangeLog index 2a90c831f33b..db7b2cc9b521 100644 --- a/media-plugins/mythmusic/ChangeLog +++ b/media-plugins/mythmusic/ChangeLog @@ -1,6 +1,12 @@ # 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.4 2003/08/08 00:05:23 max Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/ChangeLog,v 1.5 2003/08/18 18:04:36 max Exp $ + +*mythmusic-0.11 (18 Aug 2003) + + 18 Aug 2003; Max Kalika <max@gentoo.org> mythmusic-0.11.ebuild: + Bump version to 0.11. Change mad DEPEND to just libmad and libid3tag. Add + versions to some DEPENDs. Change make install to einstall. 07 Aug 2003; Max Kalika <max@gentoo.org> mythmusic-0.10.ebuild: Depend on either mythtv or mythfrontend. diff --git a/media-plugins/mythmusic/Manifest b/media-plugins/mythmusic/Manifest index 9d7c2656de35..4cfdc5e74c5a 100644 --- a/media-plugins/mythmusic/Manifest +++ b/media-plugins/mythmusic/Manifest @@ -1,3 +1,5 @@ +MD5 4c9260a43eaae457572d7fce820bfe87 mythmusic-0.11.ebuild 2164 MD5 a913196aeffdd80a0982ad9fb8158257 mythmusic-0.10.ebuild 2127 -MD5 c7a726b8b044b496fcaf08b738697c29 ChangeLog 1488 +MD5 a8c80b0d9412a593e61bd3c956054228 ChangeLog 1723 MD5 b8be115d97584eae89ae3cca03f7de73 files/digest-mythmusic-0.10 67 +MD5 d3782b76395f4d656284b24c9ee8e7b4 files/digest-mythmusic-0.11 67 diff --git a/media-plugins/mythmusic/files/digest-mythmusic-0.11 b/media-plugins/mythmusic/files/digest-mythmusic-0.11 new file mode 100644 index 000000000000..f4a0e354e145 --- /dev/null +++ b/media-plugins/mythmusic/files/digest-mythmusic-0.11 @@ -0,0 +1 @@ +MD5 3c6add40f3680fd755b6011d37e6c24b mythmusic-0.11.tar.bz2 167010 diff --git a/media-plugins/mythmusic/mythmusic-0.11.ebuild b/media-plugins/mythmusic/mythmusic-0.11.ebuild new file mode 100644 index 000000000000..0d09f9ca42d0 --- /dev/null +++ b/media-plugins/mythmusic/mythmusic-0.11.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/mythmusic-0.11.ebuild,v 1.1 2003/08/18 18:04:37 max 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 ) + 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`" + + 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 ${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." +} |