diff options
Diffstat (limited to 'media-video/xine-ui/xine-ui-0.9.18.ebuild')
-rw-r--r-- | media-video/xine-ui/xine-ui-0.9.18.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/media-video/xine-ui/xine-ui-0.9.18.ebuild b/media-video/xine-ui/xine-ui-0.9.18.ebuild new file mode 100644 index 000000000000..8e2a24487e83 --- /dev/null +++ b/media-video/xine-ui/xine-ui-0.9.18.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/xine-ui/xine-ui-0.9.18.ebuild,v 1.1 2003/01/31 00:19:24 agenkin Exp $ + +DESCRIPTION="Skinned front end for Xine movie player." +HOMEPAGE="http://xine.sourceforge.net/" +LICENSE="GPL-2" + +DEPEND="media-libs/libpng + >=media-libs/xine-lib-1_alpha2 + >=net-ftp/curl-7.10.2 + app-misc/lirc + X? ( virtual/x11 ) + aalib? ( media-libs/aalib ) + gnome? ( gnome-base/ORBit ) + directfb? ( media-libs/aalib + >=dev-libs/DirectFB-0.9.9 )" +RDEPEND="nls? ( sys-devel/gettext )" + +IUSE="X aalib gnome nls directfb" + +SLOT="0" +KEYWORDS="~x86" + +S=${WORKDIR}/${P} +SRC_URI="mirror://sourceforge/xine/${P}.tar.gz" + +src_unpack() { + + unpack ${A} + cd ${S} + + #patch -p1 < ${FILESDIR}/xine-ui-configure.patch || die "patch failed" + + use directfb || ( \ + sed -e "s:dfb::" src/Makefile.in \ + > src/Makefile.in.hacked + mv src/Makefile.in.hacked src/Makefile.in + ) + + sed -e "s:LDFLAGS =:LDFLAGS = -L/lib:" src/xitk/Makefile.in \ + > src/xitk/Makefile.in.hacked + mv src/xitk/Makefile.in.hacked src/xitk/Makefile.in + +} + +src_compile() { + + local myconf + use X || myconf="${myconf} --disable-x11 --disable-xv" + use nls || myconf="${myconf} --disable-nls" + + econf ${myconf} || die + emake || die +} + +src_install() { + + make DESTDIR=${D} \ + docdir=/usr/share/doc/${PF} \ + docsdir=/usr/share/doc/${PF} \ + install || die + + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README +} |