blob: ae75d5b21654a8bb21096c5374a5a55e59bb8a29 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.2.0.ebuild,v 1.2 2001/02/01 19:30:33 achim Exp $
A=${P}.tar.bz2
S=${WORKDIR}/${P}
DESCRIPTION="GIMP"
SRC_URI="ftp://ftp.insync.net/pub/mirrors/ftp.gimp.org/gimp/v1.2/v${PV}/"${A}
HOMEPAGE="http://www.gimp.org"
DEPEND=">=sys-libs/slang-1.4.2
>=gnome-base/gnome-libs-1.2.4
>=media-libs/mpeg-lib-1.3.1
>=media-libs/aalib-1.2
virtual/lpr"
RDEPEND=">=sys-libs/slang-1.4.2
>=gnome-base/gnome-libs-1.2.4
>=media-libs/aalib-1.2"
src_compile() {
cd ${S}
try ./configure --host=${CHOST} --prefix=/usr/X11R6 --sysconfdir=/etc
try make
}
src_install() {
dodir /usr/X11R6/lib/gimp/1.2/plug-ins
cd ${S}
try make prefix=${D}/usr/X11R6 gimpsysconfdir=${D}/etc/gimp/1.2 PREFIX=${D}/usr install
preplib /usr/X11R6
dodoc AUTHORS COPYING ChangeLog* *MAINTAINERS README* TODO
dodoc docs/*.txt docs/*.ps docs/Wilber* docs/quick_reference.tar.gz
docinto html/libgimp
dodoc devel-docs/libgimp/html/*.html
docinto devel
dodoc devel-docs/*.txt
}
|