blob: 0bbd4e1278cd5a72b198690885efdc378a5c21b5 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xpaint/xpaint-2.9.9.4.ebuild,v 1.5 2013/12/24 12:58:20 ago Exp $
EAPI=5
inherit autotools eutils
DESCRIPTION="Image editor with tiff, jpeg and png support"
HOMEPAGE="http://sf-xpaint.sourceforge.net/"
SRC_URI="mirror://sourceforge/sf-xpaint/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="jpeg2k pgf tiff"
RDEPEND="
media-libs/fontconfig
media-libs/freetype
media-libs/libpng:0
x11-libs/libICE
x11-libs/libX11
x11-libs/libXaw3dXft
x11-libs/libXext
x11-libs/libXft
x11-libs/libXmu
x11-libs/libXpm
x11-libs/libXt
sys-libs/zlib
virtual/jpeg
jpeg2k? ( media-libs/openjpeg:0 )
pgf? ( media-libs/libpgf )
tiff? ( media-libs/tiff:0 )"
DEPEND="${RDEPEND}
sys-devel/flex
sys-devel/bison
virtual/pkgconfig"
src_prepare() {
epatch "${FILESDIR}"/${P}-{QA1,QA2,submake,autoreconf,parallel-make}.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable tiff) \
$(use_enable jpeg2k libopenjpeg)
}
src_compile() {
default
emake \
WITH_PGF="$(usex pgf "yes" "no")" \
CC="$(tc-getCC)" \
CXX="$(tc-getCXX)" \
-C util
}
src_install() {
default
emake \
WITH_PGF="$(usex pgf "yes" "no")" \
DESTDIR="${ED}" \
-C util install
}
pkg_postinst() {
elog "optional dependencies:"
elog " app-text/gv (external viewer for PostScript output)"
elog " media-gfx/imagemagick (external viewer for pixel graphics)"
elog " net-print/cups (printing)"
}
|