blob: 814b5eb41c47707d55625f1452cac1fe8b0ba363 (
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
51
52
53
54
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/rawstudio/rawstudio-2.0.ebuild,v 1.1 2011/10/08 16:47:08 ssuominen Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="A program for reading and manipulating raw images from digital cameras"
HOMEPAGE="http://rawstudio.org/"
SRC_URI="http://${PN}.org/files/release/${P}.tar.gz"
LICENSE="GPL-2 CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-db/sqlite:3
dev-libs/libxml2
>=dev-libs/openssl-1
>=gnome-base/gconf-2
media-libs/flickcurl
=media-libs/lcms-1*
media-libs/lensfun
media-libs/libgphoto2
media-libs/tiff
media-gfx/exiv2
net-misc/curl
sci-libs/fftw:3.0
sys-apps/dbus
sys-libs/zlib
virtual/jpeg
x11-libs/gtk+:2
x11-libs/libX11"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
DOCS=( AUTHORS NEWS README TODO )
src_prepare() {
find . -name Makefile.am -exec sed -i -e 's:-O4:-Wall:' {} +
sed -i -e '/^icondir/s:icons:pixmaps:' pixmaps/Makefile.am || die
epatch "${FILESDIR}"/${P}-libpng15.patch
eautoreconf
}
src_configure() {
econf --disable-static
}
src_install() {
default
find "${ED}"usr -name '*.la' -exec rm -f {} +
}
|