diff options
3 files changed, 53 insertions, 7 deletions
diff --git a/media-plugins/vdr-bitstreamout/ChangeLog b/media-plugins/vdr-bitstreamout/ChangeLog index 2dd07544e5bf..94b2d2936c5d 100644 --- a/media-plugins/vdr-bitstreamout/ChangeLog +++ b/media-plugins/vdr-bitstreamout/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/vdr-bitstreamout -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/ChangeLog,v 1.13 2007/04/17 12:49:31 zzam Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/ChangeLog,v 1.14 2008/05/15 16:52:22 zzam Exp $ + +*vdr-bitstreamout-0.89c (15 May 2008) + + 15 May 2008; Matthias Schwarzott <zzam@gentoo.org> + vdr-bitstreamout-0.85-r2.ebuild, +vdr-bitstreamout-0.89c.ebuild: + Version bumped. Fixed quoting. 17 Apr 2007; Matthias Schwarzott <zzam@gentoo.org> files/rc-addon.sh: Removed bash specific stuff. diff --git a/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.85-r2.ebuild b/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.85-r2.ebuild index f00a4c4d3f44..b124eff6d88a 100644 --- a/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.85-r2.ebuild +++ b/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.85-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.85-r2.ebuild,v 1.4 2007/07/10 23:09:00 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.85-r2.ebuild,v 1.5 2008/05/15 16:52:22 zzam Exp $ IUSE="" @@ -19,16 +19,16 @@ DEPEND=">=media-video/vdr-1.2.6 >=media-libs/libmad-0.14.2b-r2 " -PATCHES="${FILESDIR}/${P}-bitopts.diff" +PATCHES=("${FILESDIR}/${P}-bitopts.diff") src_install() { vdr-plugin_src_install doman vdr-bitstreamout.5 dodoc ChangeLog Description PROBLEMS - dodoc ${S}/doc/* + dodoc "${S}"/doc/* - cd ${S}/mute + cd "${S}"/mute dodoc README* insinto /usr/share/vdr/bitstreamout diff --git a/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.89c.ebuild b/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.89c.ebuild new file mode 100644 index 000000000000..a152477aca0a --- /dev/null +++ b/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.89c.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-bitstreamout/vdr-bitstreamout-0.89c.ebuild,v 1.1 2008/05/15 16:52:22 zzam Exp $ + +IUSE="" + +inherit vdr-plugin + +DESCRIPTION="VDR Plugin: play ac3 sound over SPDIF-port of an alsa-compatible soundcard" +HOMEPAGE="http://bitstreamout.sourceforge.net" +SRC_URI="mirror://sourceforge/bitstreamout/${P}.tar.bz2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +LICENSE="GPL-2" + +DEPEND=">=media-video/vdr-1.2.6 + >=media-libs/alsa-lib-0.9.8 + >=media-sound/alsa-utils-0.9.8 + >=media-libs/libmad-0.14.2b-r2 + " + +NO_GETTEXT_HACK=1 + +src_install() { + vdr-plugin_src_install + + doman vdr-bitstreamout.5 + dodoc ChangeLog Description PROBLEMS + dodoc "${S}"/doc/* + + cd "${S}"/mute + dodoc README* + + insinto /usr/share/vdr/bitstreamout + insopts -m0755 + + for f in *.sh; do + newins ${f} mute_${f} + done +} |