# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/codeine/codeine-1.0_beta3.ebuild,v 1.1 2005/04/14 09:46:20 greg_g Exp $ inherit kde MY_P=${P/_/-} S=${WORKDIR}/${MY_P} DESCRIPTION="Simple KDE frontend for xine-lib." HOMEPAGE="http://kde-apps.org/content/show.php?content=17161" SRC_URI="http://www.methylblue.com/codeine/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="debug" DEPEND="media-libs/xine-lib" need-kde 3.2 src_compile(){ local myconf="prefix=${D}usr" use debug && myconf="${myconf} debug=full" ./configure ${myconf} || die "configure failed" emake || die "make failed" } src_install() { make install || die "make install failed" dodoc README ChangeLog }