diff options
author | Alex Legler <a3li@gentoo.org> | 2011-10-14 21:16:50 +0000 |
---|---|---|
committer | Alex Legler <a3li@gentoo.org> | 2011-10-14 21:16:50 +0000 |
commit | 18107274008f825bfe6ce40f54b34e8681d0a442 (patch) | |
tree | 24d9361bac3612545a6679221352591e34db7e46 /media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild | |
parent | amd64 stable wrt #385699 (diff) | |
download | gentoo-2-18107274008f825bfe6ce40f54b34e8681d0a442.tar.gz gentoo-2-18107274008f825bfe6ce40f54b34e8681d0a442.tar.bz2 gentoo-2-18107274008f825bfe6ce40f54b34e8681d0a442.zip |
Add additional patch to fix alsa issues, bug 384215. Minor ebuild fixes from bug 385353 and idl0r.
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild')
-rw-r--r-- | media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild b/media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild new file mode 100644 index 000000000000..12b7413bf0f3 --- /dev/null +++ b/media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-tv/tvtime/tvtime-1.0.2_p20110131-r3.ebuild,v 1.1 2011/10/14 21:16:50 a3li Exp $ + +EAPI=4 +inherit eutils autotools + +TVTIME_HGREV="111b28cca42d" + +DESCRIPTION="High quality television application for use with video capture cards" +HOMEPAGE="http://tvtime.sourceforge.net/" +SRC_URI="http://www.kernellabs.com/hg/~dheitmueller/tvtime/archive/${TVTIME_HGREV}.tar.bz2 -> ${P}.tar.bz2 +http://dev.gentoo.org/~a3li/distfiles/${PN}-1.0.2-alsamixer-r1.patch +http://dev.gentoo.org/~a3li/distfiles/${PN}-1.0.2-alsa-r1.patch +http://dev.gentoo.org/~a3li/distfiles/${PN}-1.0.2-alsa-fixes.patch" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="alsa nls xinerama" + +RDEPEND="x11-libs/libSM + x11-libs/libICE + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXv + x11-libs/libXxf86vm + xinerama? ( x11-libs/libXinerama ) + x11-libs/libXtst + x11-libs/libXau + x11-libs/libXdmcp + >=media-libs/freetype-2 + >=sys-libs/zlib-1.1.4 + >=media-libs/libpng-1.2 + >=dev-libs/libxml2-2.5.11 + alsa? ( media-libs/alsa-lib ) + nls? ( virtual/libintl )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext ) + dev-util/pkgconfig" + +S="${WORKDIR}/${PN}-${TVTIME_HGREV}" +DOCS=( ChangeLog AUTHORS NEWS README ) + +src_prepare() { + # Rename the desktop file, bug #308297 + mv docs/net-tvtime.desktop docs/tvtime.desktop || die + sed -i -e "s/net-tvtime.desktop/tvtime.desktop/g" docs/Makefile.am || die + + # use 'tvtime' for the application icon see bug #66293 + sed -i -e "s/tvtime.png/tvtime/" docs/tvtime.desktop || die + + # patch to adapt to PIC or __PIC__ for pic support + epatch "${FILESDIR}"/${PN}-pic.patch #74227 + + epatch "${FILESDIR}/${PN}-1.0.2-xinerama.patch" + + # Remove linux headers and patch to build with 2.6.18 headers + rm -f "${S}"/src/{videodev.h,videodev2.h} || die + + epatch "${FILESDIR}/${P}-libsupc++.patch" + + epatch "${FILESDIR}/${P}-autotools.patch" + epatch "${FILESDIR}/${P}-gettext.patch" + epatch "${FILESDIR}/${PN}-libpng-1.5.patch" + epatch "${FILESDIR}/${P}-underlinking.patch" #370025 + + if use alsa; then + epatch "${DISTDIR}/${PN}-1.0.2-alsa-r1.patch" + epatch "${DISTDIR}/${PN}-1.0.2-alsamixer-r1.patch" + epatch "${DISTDIR}/${PN}-1.0.2-alsa-fixes.patch" + fi + + AT_M4DIR="m4" eautoreconf +} + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_with xinerama) || die "econf failed" +} + +src_install() { + default + + dohtml docs/html/* +} + +pkg_postinst() { + elog "A default setup for ${PN} has been saved as" + elog "/etc/tvtime/tvtime.xml. You may need to modify it" + elog "for your needs." + elog + elog "Detailed information on ${PN} setup can be" + elog "found at ${HOMEPAGE}help.html" + echo +} |