diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2010-02-27 23:51:03 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2010-02-27 23:51:03 +0000 |
commit | f2ed51cdab357e337dc402cc677e9974ddd50d38 (patch) | |
tree | 9f1e70d196a548b39c0f398309c23719b6c13029 /media-video/noad | |
parent | media-video/mplayer: Add missing dep and fix syntax (bug #307039) (diff) | |
download | gentoo-2-f2ed51cdab357e337dc402cc677e9974ddd50d38.tar.gz gentoo-2-f2ed51cdab357e337dc402cc677e9974ddd50d38.tar.bz2 gentoo-2-f2ed51cdab357e337dc402cc677e9974ddd50d38.zip |
cleanup
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'media-video/noad')
-rw-r--r-- | media-video/noad/ChangeLog | 5 | ||||
-rw-r--r-- | media-video/noad/noad-0.7.0.ebuild | 94 |
2 files changed, 4 insertions, 95 deletions
diff --git a/media-video/noad/ChangeLog b/media-video/noad/ChangeLog index 99fb28be1c86..25863f949ef3 100644 --- a/media-video/noad/ChangeLog +++ b/media-video/noad/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-video/noad # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/noad/ChangeLog,v 1.37 2010/02/25 18:44:08 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/noad/ChangeLog,v 1.38 2010/02/27 23:51:03 hd_brummy Exp $ + + 27 Feb 2010; Joerg Bornkessel <hd_brummy@gentoo.org> -noad-0.7.0.ebuild: + cleanup 25 Feb 2010; Samuli Suominen <ssuominen@gentoo.org> +files/patches-0.7.x/noad-0.7.0.20100119-asneeded.patch, diff --git a/media-video/noad/noad-0.7.0.ebuild b/media-video/noad/noad-0.7.0.ebuild deleted file mode 100644 index 2490bd156a0d..000000000000 --- a/media-video/noad/noad-0.7.0.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/noad/noad-0.7.0.ebuild,v 1.3 2010/01/07 21:11:38 hd_brummy Exp $ -EAPI="2" - -WANT_AUTOMAKE="latest" -WANT_AUTOCONF="latest" - -inherit eutils autotools - -DESCRIPTION="Mark commercial Breaks in VDR records" -HOMEPAGE="http://noad.heliohost.org/" -SRC_URI="http://noad.heliohost.org/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="ffmpeg imagemagick" - -DEPEND="media-libs/libmpeg2 - ffmpeg? ( >=media-video/ffmpeg-0.4.8 ) - imagemagick? ( >=media-gfx/imagemagick-6.2.4.2-r1 )" -RDEPEND="${DEPEND}" - -src_prepare() { - - epatch "${FILESDIR}"/patches-0.6.0/as-needed.diff - epatch "${FILESDIR}"/patches-0.6.0/cflags.diff - epatch "${FILESDIR}"/patches-0.6.0/hangcheck.diff - epatch "${FILESDIR}"/patches-0.7.x/noad-0.7.0_gcc-4.4.diff - - if has_version ">=media-video/ffmpeg-0.4.9_p20080326" ; then - sed -e "s:include/ffmpeg:include/libavcodec:g" -i configure.ac - fi - - rm configure - eautoreconf -} - -src_configure() { - - econf \ - $(use_with ffmpeg) \ - $(use_with imagemagick magick) \ - --with-tools \ - --with-mpeginclude=/usr/include/mpeg2dec -} - -src_compile() { - - emake noad || die "emake faild" -} - -src_install() { - - dobin noad -# fix me later! -# dobin noad showindex -# use imagemagick && dobin markpics - - dodoc README INSTALL - # example scripts are installed as dokumentation - dodoc allnewnoad allnoad allnoadnice clearlogos noadifnew stat2html - - CONF_SOURCE="${FILESDIR}/0.6.0-r7" - newconfd "${CONF_SOURCE}"/confd_vdraddon.noad vdraddon.noad - - insinto /usr/share/vdr/record - doins "${CONF_SOURCE}"/record-50-noad.sh - - insinto /usr/share/vdr/shutdown - doins "${FILESDIR}"/pre-shutdown-15-noad.sh - - insinto /etc/vdr/reccmds - doins "${CONF_SOURCE}"/reccmds.noad.conf - - exeinto /usr/share/vdr/bin - doexe "${CONF_SOURCE}"/noad-reccmd -} - -pkg_postinst() { - - elog - elog "Congratulations, you have just installed noad!," - elog "To integrate noad in VDR you should do this:" - elog - elog "start and set Parameter in /etc/conf.d/vdraddon.noad" - elog - elog "Note: You can use here all pararmeters for noad," - elog "please look in the documentation of noad." - elog - elog "up from this version, noad works with .ts file structur" - elog "used in comming up version >=vdr-1.7.4" -} |