blob: bf37b2dc9b7971d1ae87320a286ce0adcd3d06da (
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
41
42
43
44
45
46
47
48
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconfig/pkgconfig-0.18.1.ebuild,v 1.3 2005/07/18 10:27:06 leonardop Exp $
inherit eutils flag-o-matic gnome.org
MY_PN="pkg-config"
MY_P=${MY_PN}-${PV}
DESCRIPTION="Package config system that manages compile/link flags for libraries"
HOMEPAGE="http://pkgconfig.freedesktop.org/wiki/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="hardened"
DEPEND=""
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
use ppc64 && use hardened && replace-flags -O[2-3] -O1
# Set the default search path correctly
epatch ${FILESDIR}/${MY_P}-pc_path.patch
# Fix compilation-time tests. See bug #98651.
epatch ${FILESDIR}/${MY_P}-checks.patch
einfo "Running autoconf"
autoconf || die "Autoconf failed"
einfo "Running automake"
WANT_AUTOMAKE=1.7 automake || die "Autoconf failed"
}
src_compile() {
local myconf="--enable-indirect-deps"
econf ${myconf} || die "./configure step failed"
emake || die "Compilation failed"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog NEWS README
}
|