# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/libbluray/libbluray-0.0.1_pre20110210.ebuild,v 1.1 2011/02/10 08:01:53 radhermit Exp $ EAPI=4 inherit autotools java-pkg-opt-2 flag-o-matic DESCRIPTION="Blu-ray playback libraries" HOMEPAGE="http://www.videolan.org/developers/libbluray.html" SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="aacs java static-libs utils xine" COMMON_DEPEND=" dev-libs/libxml2 " RDEPEND=" ${COMMON_DEPEND} aacs? ( media-video/aacskeys ) java? ( >=virtual/jre-1.6 ) " DEPEND=" ${COMMON_DEPEND} java? ( >=virtual/jdk-1.6 dev-java/ant-core ) dev-util/pkgconfig " PDEPEND=" xine? ( media-libs/libbluray-xine ) " DOCS=( doc/README README.txt TODO.txt ) src_prepare() { use java && export JDK_HOME="$(java-config -g JAVA_HOME)" eautoreconf java-pkg-opt-2_src_prepare } src_configure() { local myconf="" if use java; then export JAVACFLAGS="$(java-pkg_javac-args)" append-cflags "$(java-pkg_get-jni-cflags)" myconf="--with-jdk=${JDK_HOME}" fi econf \ $(use_enable java bdjava) \ $(use_enable static-libs static) \ $(use_enable utils static) \ $(use_enable utils examples) \ $myconf } src_compile() { emake } src_install() { default_src_install if use utils; then cd src/examples/ dobin clpi_dump index_dump mobj_dump mpls_dump sound_dump cd .libs/ dobin bd_info bdsplice hdmv_test libbluray_test list_titles if use java; then dobin bdj_test fi fi if use java; then java-pkg_dojar "${S}/src/.libs/${PN}.jar" doenvd "${FILESDIR}"/90${PN} fi }