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.
gentoo-overlay/media-sound/aacplusenc/aacplusenc-0.17.5.ebuild

56 lines
1.1 KiB

# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit 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"
PATCHES=(
"${FILESDIR}/${P}-asneeded.patch"
"${FILESDIR}/${P}-libm.patch"
)
S=${WORKDIR}/${PN}
src_prepare() {
default
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
}