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-libs/fidlib/fidlib-0.9.10-r1.ebuild

49 lines
1.1 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit toolchain-funcs flag-o-matic eutils multilib
DESCRIPTION="Run-time filter design and execution library"
HOMEPAGE="http://uazu.net/fidlib/"
SRC_URI="http://uazu.net/fidlib/${P}.tgz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
doecho() {
echo "$@"
"$@" || die
}
src_prepare() {
epatch "${FILESDIR}"/${P}-extern.patch
# Avoid ICE under gcc-4.6, fixed in 4.6.3
if [[ $(gcc-version) == "4.6" && $(gcc-micro-version) -le 2 ]] ; then
replace-flags -O? -O0
fi
}
src_compile() {
# build library
doecho $(tc-getCC) ${CFLAGS} -DT_LINUX ${LDFLAGS} -Wl,-soname,libfidlib.so.${PV:0:1} \
-fPIC -shared fidlib.c -lm -o libfidlib.so.${PV:0:1}
# build command-line tool
doecho $(tc-getCC) ${CFLAGS} ${LDFLAGS} firun.c -lm ./libfidlib.so.${PV:0:1} -o firun
}
src_install() {
dobin firun
dolib.so libfidlib.so.${PV:0:1}
dosym libfidlib.so.${PV:0:1} /usr/$(get_libdir)/libfidlib.so
insinto /usr/include/fidlib
doins fidlib.h
dodoc NEWS README fidlib.txt firun.txt
}