blob: 29c4a224154e5c053dbcab9a8754880ad510d2f8 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkmm/gtkmm-2.0.2.ebuild,v 1.4 2003/02/13 16:57:56 vapier Exp $
S=${WORKDIR}/${P}
IUSE=""
DESCRIPTION="C++ interface for GTK+2"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://gtkmm.sourceforge.net/"
LICENSE="LGPL-2.1"
KEYWORDS="x86 ~ppc ~sparc "
SLOT="2"
DEPEND="virtual/glibc
>=sys-devel/perl-5.6.0
=dev-libs/glib-2.0*
=x11-libs/gtk+-2.0*
>=dev-libs/libsigc++-1.2"
src_compile() {
local myconf
if [ "${DEBUG}" ]
then
myconf="--enable-debug=yes"
else
myconf="--enable-debug=no"
fi
econf ${myconf} || die "econf failed"
emake || die "emake failed."
}
src_install() {
einstall || die "install failed"
dodoc AUTHORS CHANGES COPYING ChangeLog \
HACKING PORTING NEWS README TODO
}
|