blob: 8d12a85eb8ecf46e5fe1bf1cfefaf7d783b4e707 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/xpaint/xpaint-2.7.0.ebuild,v 1.8 2004/10/01 12:52:01 pyrania Exp $
inherit eutils
DESCRIPTION="XPaint is an image editor which supports most standard paint program options."
SRC_URI="mirror://sourceforge/sf-xpaint/${P}.tar.bz2"
HOMEPAGE="http://sf-xpaint.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~sparc"
IUSE=""
DEPEND=">=media-libs/tiff-3.2
virtual/x11
media-libs/jpeg
media-libs/libpng
sys-libs/zlib
sys-devel/bison
sys-devel/flex"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}.patch || die "epatch failed"
}
src_compile() {
xmkmf -a || die
# It demands Xaw95 libs now even if the docs
# say somthing else (own version is included)
make xaw95static || die
}
src_install() {
# make install causes tons of sanbox violations
# even if it uses DESTDIR so we do it the hard way
insinto /etc/X11/app-defaults
doins app-defaults/out/*
dobin xpaint
insinto /usr/share/xpaint/help
doins share/help/*
insinto /usr/share/xpaint/messages
doins share/messages/*
insinto /usr/share/xpaint/filters
doins share/filters/*
insinto /usr/share/xpaint/include
doins image.h
insinto /usr/share/pixmaps
doins XPaintIcon.xpm
newman xpaint._man xpaint.1
dodoc ChangeLog INSTALL README README.PNG README.old TODO \
Doc/Operator.doc Doc/sample.Xdefaults
}
|