blob: 5fffebb627a1aa6668358068388eef8f60fd980d (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libopenraw/libopenraw-0.0.8.ebuild,v 1.1 2009/06/05 19:43:39 ssuominen Exp $
EAPI=2
DESCRIPTION="Decoding library for RAW image formats"
HOMEPAGE="http://libopenraw.freedesktop.org"
SRC_URI="http://${PN}.freedesktop.org/download/${P}.tar.gz"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gtk test"
RDEPEND=">=dev-libs/boost-1.33
media-libs/jpeg
>=dev-libs/libxml2-2.5
gtk? ( x11-libs/gtk+:2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
test? ( net-misc/curl )"
src_configure() {
econf \
--disable-dependency-tracking \
$(use_enable gtk gnome)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
|