diff options
author | Anders Rune Jensen <arj@gentoo.org> | 2005-01-15 04:48:31 +0000 |
---|---|---|
committer | Anders Rune Jensen <arj@gentoo.org> | 2005-01-15 04:48:31 +0000 |
commit | bb76395172647b51b14c9f6f74a492b233607052 (patch) | |
tree | 6e30abb2cfa08321ff638414f2f9a3cfe5979454 /media-video/cxfe/cxfe-0.9.1-r1.ebuild | |
parent | added ~mips keyword (Manifest recommit) (diff) | |
download | gentoo-2-bb76395172647b51b14c9f6f74a492b233607052.tar.gz gentoo-2-bb76395172647b51b14c9f6f74a492b233607052.tar.bz2 gentoo-2-bb76395172647b51b14c9f6f74a492b233607052.zip |
two new patches
(Portage version: 2.0.51-r12)
Diffstat (limited to 'media-video/cxfe/cxfe-0.9.1-r1.ebuild')
-rw-r--r-- | media-video/cxfe/cxfe-0.9.1-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-video/cxfe/cxfe-0.9.1-r1.ebuild b/media-video/cxfe/cxfe-0.9.1-r1.ebuild new file mode 100644 index 000000000000..7a1e8aed81dd --- /dev/null +++ b/media-video/cxfe/cxfe-0.9.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/cxfe/cxfe-0.9.1-r1.ebuild,v 1.1 2005/01/15 04:48:31 arj Exp $ + +inherit eutils + +DESCRIPTION="A command line interface for xine." +HOMEPAGE="http://www.rtwnetwork.com/cxfe/" + +SRC_URI="ftp://ftp.rtwnetwork.com/pub/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="lirc" + +DEPEND=">=media-libs/xine-lib-1_rc1 + virtual/x11 + lirc? ( app-misc/lirc ) + sys-libs/ncurses" + +src_unpack() { + unpack ${A} + mv cxfe ${P} + cd ${P} + epatch ${FILESDIR}/gcc-2.95-fix.patch + epatch ${FILESDIR}/max-osd-fix.patch + epatch ${FILESDIR}/xv-default.patch + epatch ${FILESDIR}/disable-dpms.patch + epatch ${FILESDIR}/position-osd.patch +} + +src_install() { + dobin cxfe + dodoc COPYING README TODO lircrc-example +} |