Files
@ 794dc86717e2
Branch filter:
Location: portage-overlay.git/media-libs/libaacs/libaacs-9999.ebuild - annotation
794dc86717e2
781 B
application/vnd.gentoo.ebuild
initial commit of main tree
794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 794dc86717e2 | # Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
EAPI=2
inherit autotools git
EGIT_REPO_URI="git://git.videolan.org/${PN}.git"
DESCRIPTION="Implementation of the Advanced Access Content System specification"
HOMEPAGE="http://www.videolan.org/developers/${PN}.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="static-libs examples"
DEPEND="sys-libs/glibc"
RDEPEND="${DEPEND}
"
src_prepare() {
eautoreconf
}
src_configure() {
econf $(use_enable static-libs static) || die
}
src_compile() {
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README.txt KEYDB.cfg || die
if use examples; then
cd "${S}"/src/examples/.libs
dobin libaacs_test parser_test || die
fi
}
|