blob: 97decbf3d7d9d990b2d9843197794bd56770bc83 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/anjuta/anjuta-1.0.2.ebuild,v 1.7 2003/09/25 22:28:17 zul Exp $
IUSE=""
S=${WORKDIR}/${P}
DESCRIPTION="A versatile Integrated Development Environment (IDE) for C and C++."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://anjuta.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc sparc"
RDEPEND="=gnome-base/libglade-0*
>=gnome-base/ORBit-0.5.0
>=gnome-base/gnome-print-0.35
=gnome-base/gnome-vfs-1.0*
>=gnome-base/bonobo-1.0
>=gnome-base/gnome-libs-1.4.1.2-r1
>=dev-libs/libxml-1.4.0
dev-libs/libpcre
dev-util/ctags
dev-util/indent
>=sys-devel/bison-1.0
>=app-text/scrollkeeper-0.1.4
media-libs/gdk-pixbuf
media-gfx/gnome-iconedit
media-libs/audiofile
media-sound/esound
sys-devel/gdb
sys-apps/grep
=x11-libs/gtk+-1.2*"
DEPEND="dev-util/pkgconfig
${RDEPEND}"
src_compile() {
local myconf
use nls || myconf="--disable-nls"
econf ${myconf} --enable-final || die
emake || die
}
src_install () {
einstall \
anjutadocdir=${D}/usr/share/doc/${PF} || die
dodoc AUTHORS COPYING ChangeLog FUTURE NEWS README THANKS TODO
}
|