blob: e9d009b2f5970c19314b0bed373b5142b6312db4 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liboil/liboil-0.3.15.ebuild,v 1.9 2008/12/25 07:14:03 ssuominen Exp $
inherit flag-o-matic
DESCRIPTION="library of simple functions that are optimized for various CPUs"
HOMEPAGE="http://liboil.freedesktop.org/"
SRC_URI="http://liboil.freedesktop.org/download/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0.3"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd"
IUSE="doc"
RDEPEND="=dev-libs/glib-2*"
DEPEND="${RDEPEND}
doc? ( dev-util/gtk-doc )"
src_compile() {
strip-flags
filter-flags -O?
append-flags -O2
econf --disable-dependency-tracking \
$(use_enable doc gtk-doc) || die "econf failed."
emake -j1 || die "emake failed."
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS BUG-REPORTING HACKING NEWS README
}
|