You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Copyright 1999-2011 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/aacplusenc/aacplusenc-0.17.5.ebuild,v 1.2 2011/12/04 22:53:46 radhermit Exp $
|
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
|
|
|
|
DESCRIPTION="High-Efficiency AAC (AAC+) Encoder"
|
|
|
|
HOMEPAGE="http://teknoraver.net/software/mp4tools/"
|
|
|
|
SRC_URI="http://ppa.launchpad.net/teknoraver/ppa/ubuntu/pool/main/a/${PN}/${PN}_${PV}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-1"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="sci-libs/fftw:3.0"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
sys-apps/sed"
|
|
|
|
|
|
|
|
# 3GPP patenting issues
|
|
|
|
RESTRICT="mirror test"
|
|
|
|
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}"/${P}-asneeded.patch
|
|
|
|
|
|
|
|
# Fix linking order (bug #393137)
|
|
|
|
epatch "${FILESDIR}"/${P}-libm.patch
|
|
|
|
|
|
|
|
sed \
|
|
|
|
-e 's:LDFLAGS:LIBRARIES:g' \
|
|
|
|
-e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' \
|
|
|
|
-e 's:ar r:$(AR) r:g' \
|
|
|
|
-e 's:strip:true:' \
|
|
|
|
-e 's:-O3 -ftree-vectorize::' \
|
|
|
|
-i configure Makefile lib*/Makefile || die "sed failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
tc-export AR CC
|
|
|
|
./configure || die "./configure failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_compile() {
|
|
|
|
emake EXTRACFLAGS="${CFLAGS}"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake INSTDIR="${D}/usr" install
|
|
|
|
doman ${PN}.1
|
|
|
|
dodoc debian/changelog
|
|
|
|
}
|