blob: 79902efb3a614aeb0f1b76571943fdd741e0080d (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/fotoxx/fotoxx-11.02.ebuild,v 1.1 2011/02/09 18:16:41 grozin Exp $
EAPI=3
inherit eutils toolchain-funcs
DESCRIPTION="Program for improving image files made with a digital camera."
HOMEPAGE="http://kornelix.squarespace.com/fotoxx"
SRC_URI="http://kornelix.squarespace.com/storage/downloads/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/gtk+:2
media-libs/tiff"
RDEPEND="${DEPEND}
media-libs/exiftool
media-gfx/ufraw
x11-misc/xdg-utils"
src_prepare() {
epatch "${FILESDIR}"/${PF}-makefile.patch
}
src_compile() {
tc-export CXX
emake PREFIX=/usr || die
}
src_install() {
pushd doc > /dev/null
mv ${PN}.man ${PN}.1
doman ${PN}.1
rm COPYING ${PN}.1
bzip2 -9 userguide-changes
popd > /dev/null
# For the Help menu items to work, *.html must be in /usr/share/doc/${PF},
# and README, CHANGES, TRANSLATIONS must not be compressed
emake DESTDIR="${D}" PREFIX=/usr install || die
make_desktop_entry ${PN} "Fotoxx" /usr/share/${PN}/icons/${PN}.png \
"Application;Graphics;2DGraphics"
}
|