blob: 557d6e5f5636581a64b4d9eb36da7bd08836a81c (
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
|
# Copyright 2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Nathaniel Hirsch <nh2@njit.edu> Achim Gottinge <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnomemm/gnomemm-1.2.2-r2.ebuild,v 1.1 2002/06/04 02:51:34 lostlogic Exp $
S=${WORKDIR}/${P}
DESCRIPTION="C++ binding for the GNOME libraries"
SRC_URI="mirror://sourceforge/gtkmm/${P}.tar.gz"
HOMEPAGE="http://gtkmm.sourceforge.net/"
RDEPEND=">=x11-libs/gtkmm-1.2.8
>=gnome-base/ORBit-0.5.11
=sys-libs/db-1*"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}/src
patch < ${FILESDIR}/${P}-gentoo.patch
cd ${S}
patch -p1 < ${FILESDIR}/${P}-gentoo.patch2
}
src_compile() {
./configure --host=${CHOST} \
--prefix=/usr || die
emake || die
}
src_install() {
make DESTDIR=${D} \
install || die
dodoc AUTHORS COPYING ChangeLog NEWS README* TODO
}
|