diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-23 13:40:12 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-23 13:40:12 +0200 |
commit | 0e1a413cb976b102a58ac12f25dbbc062b5010de (patch) | |
tree | c99064b0fcba7a907b6c67284bff88ead6929777 | |
parent | sci-chemistry/concoord: Bump to EAPI=5 (diff) | |
download | sci-0e1a413cb976b102a58ac12f25dbbc062b5010de.tar.gz sci-0e1a413cb976b102a58ac12f25dbbc062b5010de.tar.bz2 sci-0e1a413cb976b102a58ac12f25dbbc062b5010de.zip |
sci-libs/framewave: Use doheader and scons-utils.eclass
Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec@gentoo.org>
-rw-r--r-- | sci-libs/framewave/framewave-1.3.1.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sci-libs/framewave/framewave-1.3.1.ebuild b/sci-libs/framewave/framewave-1.3.1.ebuild index 7a673c487..43a5bef29 100644 --- a/sci-libs/framewave/framewave-1.3.1.ebuild +++ b/sci-libs/framewave/framewave-1.3.1.ebuild @@ -4,6 +4,8 @@ EAPI=5 +inherit scons-utils + MY_P="FRAMEWAVE_${PV}_SRC" DESCRIPTION="A collection of popular image and signal processing routines" @@ -31,7 +33,7 @@ src_compile() { local bits="32" use amd64 && bits="64" - scons \ + escons \ CCFLAGS="${CFLAGS}" bitness="${bits}" variant="release" \ libtype="shared" ${MAKEOPTS}|| die "make failed" } @@ -42,6 +44,5 @@ src_install() { dolib.so Framewave/build/bin/release_shared_${bits}/*.so* - insinto /usr/include - doins Framewave/build/include/* + doheader Framewave/build/include/* } |