blob: f1b3fdd4f5530f82b7bc852ef70a92fb8c903e6d (
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
49
50
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/babl/babl-0.1.6.ebuild,v 1.6 2012/05/05 08:02:35 jdhore Exp $
EAPI=3
VALASLOT=0.14
inherit autotools eutils
DESCRIPTION="A dynamic, any to any, pixel format conversion library"
HOMEPAGE="http://www.gegl.org/babl/"
SRC_URI="ftp://ftp.gimp.org/pub/${PN}/${PV:0:3}/${P}.tar.bz2"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
IUSE="altivec +introspection sse mmx vala"
RDEPEND="introspection? ( >=dev-libs/gobject-introspection-0.10 )"
DEPEND="${RDEPEND}
>=sys-devel/libtool-2.2
vala? ( dev-lang/vala:${VALASLOT}[vapigen] )
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-introspection.patch
eautoreconf
}
src_configure() {
# Automagic rsvg support is just for website generation we do not call,
# so we don't need to fix it
# w3m is used for dist target thus no issue for us that it is automagically
# detected
VAPIGEN="$(type -p vapigen-${VALASLOT})" \
econf \
--disable-static \
--disable-maintainer-mode \
$(use_enable altivec) \
$(use_enable introspection) \
$(use_enable mmx) \
$(use_enable sse) \
$(use_with vala)
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
find "${ED}" -name '*.la' -delete
dodoc AUTHORS ChangeLog README NEWS || die "dodoc failed"
}
|