diff options
Diffstat (limited to 'media-libs/opus/opus-1.0.1_rc3.ebuild')
-rw-r--r-- | media-libs/opus/opus-1.0.1_rc3.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/media-libs/opus/opus-1.0.1_rc3.ebuild b/media-libs/opus/opus-1.0.1_rc3.ebuild new file mode 100644 index 000000000000..d8e85b052884 --- /dev/null +++ b/media-libs/opus/opus-1.0.1_rc3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/opus/opus-1.0.1_rc3.ebuild,v 1.1 2012/09/09 09:38:34 lu_zero Exp $ + +EAPI=4 + +if [[ ${PV} == *9999 ]] ; then + SCM="git-2" + EGIT_REPO_URI="git://git.opus-codec.org/opus.git" +fi + +inherit autotools ${SCM} +MY_P=${P/_/-} +DESCRIPTION="The Opus codec is designed for interactive speech and audio +transmission over the Internet." +HOMEPAGE="http://opus-codec.org/" +SRC_URI="http://downloads.xiph.org/releases/opus/${P}.tar.gz" +if [[ ${PV} == *9999 ]] ; then + SRC_URI="" +elif [[ ${PV%_p*} != ${PV} ]] ; then # Gentoo snapshot + SRC_URI="http://dev.gentoo.org/~lu_zero/${PN}/${P}.tar.xz" +else # Official release + SRC_URI="http://downloads.xiph.org/releases/${PN}/${MY_P}.tar.gz" +fi + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc static-libs" + +DEPEND="doc? ( app-doc/doxygen )" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + [[ ${PV} == *9999 ]] && eautoreconf +} + +src_configure() { + myconf="--enable-custom-modes" + + econf $(use_enable doc) $(use_enable static-libs static) ${myconf} +} + +src_compile() { + default +} + +src_install() { + default + find "${D}" -name '*.la' -delete + rm -fR "${D}/usr/share/doc/opus" + use doc && dohtml -r doc/html/* +} |