blob: 373100ec203b87aff53077e235138f2c717a220d (
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
|
# 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.3 2008/07/26 18:55:58 tester 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"
DEPEND="=dev-libs/glib-2*"
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
}
|