blob: 0b9f61117635a8627e0063769fa77491f0887f02 (
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/media-libs/libopenraw/libopenraw-0.0.5.ebuild,v 1.6 2008/04/14 14:29:27 armin76 Exp $
DESCRIPTION="Decoding library for RAW image formats"
HOMEPAGE="http://libopenraw.freedesktop.org"
SRC_URI="http://${PN}.freedesktop.org/download/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ppc64 sparc x86"
IUSE="gtk"
RESTRICT="test"
RDEPEND="dev-libs/boost
media-libs/jpeg
gtk? ( >=x11-libs/gtk+-2 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_compile() {
econf --disable-dependency-tracking $(use_enable gtk gnome)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
}
|