diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2010-06-10 14:48:18 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2010-06-10 14:48:18 +0000 |
commit | a6e163226e91fdb8a483d23790230e5162399a83 (patch) | |
tree | 197a0ee5512701104a453d0c3ff4fcc90d28feac /media-plugins/mythmusic | |
parent | Linux patch version 2.6.32.15 (diff) | |
download | gentoo-2-a6e163226e91fdb8a483d23790230e5162399a83.tar.gz gentoo-2-a6e163226e91fdb8a483d23790230e5162399a83.tar.bz2 gentoo-2-a6e163226e91fdb8a483d23790230e5162399a83.zip |
Add experimental ebuild for MythTV 0.23
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'media-plugins/mythmusic')
-rw-r--r-- | media-plugins/mythmusic/ChangeLog | 8 | ||||
-rw-r--r-- | media-plugins/mythmusic/mythmusic-0.23_p25065.ebuild | 36 |
2 files changed, 43 insertions, 1 deletions
diff --git a/media-plugins/mythmusic/ChangeLog b/media-plugins/mythmusic/ChangeLog index 84003ffb5a1d..50c9340c5630 100644 --- a/media-plugins/mythmusic/ChangeLog +++ b/media-plugins/mythmusic/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/mythmusic # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/ChangeLog,v 1.85 2010/06/03 16:05:25 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/ChangeLog,v 1.86 2010/06/10 14:48:18 cardoe Exp $ + +*mythmusic-0.23_p25065 (10 Jun 2010) + + 10 Jun 2010; Doug Goldstein <cardoe@gentoo.org> + +mythmusic-0.23_p25065.ebuild: + Add experimental ebuild for MythTV 0.23 03 Jun 2010; Doug Goldstein <cardoe@gentoo.org> mythmusic-0.22_p22763.ebuild: diff --git a/media-plugins/mythmusic/mythmusic-0.23_p25065.ebuild b/media-plugins/mythmusic/mythmusic-0.23_p25065.ebuild new file mode 100644 index 000000000000..7912b8a001d4 --- /dev/null +++ b/media-plugins/mythmusic/mythmusic-0.23_p25065.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythmusic/mythmusic-0.23_p25065.ebuild,v 1.1 2010/06/10 14:48:18 cardoe Exp $ + +EAPI=2 +inherit qt4 mythtv-plugins + +DESCRIPTION="Music player module for MythTV." +IUSE="cdr fftw libvisual opengl sdl" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=media-sound/cdparanoia-3.9.8 + >=media-libs/libcdaudio-0.99.6 + >=media-libs/taglib-1.5 + >=media-libs/flac-1.2.1 + >=media-libs/libogg-1.1.4 + >=media-libs/libvorbis-1.2.1 + cdr? ( virtual/cdrtools ) + fftw? ( sci-libs/fftw ) + opengl? ( virtual/opengl ) + sdl? ( >=media-libs/libsdl-1.2.5 + libvisual? ( =media-libs/libvisual-0.4* ) + )" + +DEPEND="${RDEPEND}" + +pkg_config() { + if use libvisual && ! use sdl; then + ewarn + ewarn "libvisual support requires sdl support. Enable 'sdl' USE flag" + ewarn "if you really want libvisual support" + ewarn + fi +} + +MTVCONF="$(use_enable fftw) $(use_enable sdl) $(use_enable opengl)" |