blob: 02ac8bb518d6b7fcb6160c915500f4bcd6818a61 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/glibmm/glibmm-2.4.1.ebuild,v 1.7 2004/06/19 05:13:21 khai Exp $
inherit gnome2
DESCRIPTION="C++ interface for glib2"
HOMEPAGE="http://gtkmm.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT="2"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND="${RDEPEND}
dev-util/pkgconfig"
RDEPEND=">=dev-libs/libsigc++-2.0
>=dev-libs/glib-2.4"
src_compile () {
if [ "${ARCH}" = "amd64" ]; then
aclocal -I scripts
automake -c -f
autoconf
fi
gnome2_src_compile
}
DOCS="AUTHORS CHANGES ChangeLog HACKING PORTING NEWS README TODO"
|