blob: 865125a783986f7835cce180f06fa40101af3c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 2006-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libofa/libofa-0.9.3.ebuild,v 1.6 2006/11/21 19:00:43 ranger Exp $
inherit eutils
DESCRIPTION="Open Fingerprint Architecture"
HOMEPAGE="http://www.musicdns.org/"
SRC_URI="http://www.musicdns.org/themes/musicdns_org/downloads/${P}.tar.gz"
LICENSE="|| ( APL-1.0 GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
RDEPEND="dev-libs/expat
net-misc/curl
sci-libs/fftw"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
[[ "${CXXFLAGS}" != "${CXXFLAGS/-ffast-math/}" ]] && \
die "Correct your C[XX]FLAGS. Using -ffast-math is unsafe and not supported."
}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/libofa-0.9.3-gcc-4.patch
}
src_compile() {
econf || die "configure failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS README
}
|