blob: 08f9a1b92f8f69c8d968d75fc16a0e3f5feb6809 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/orbitcpp/orbitcpp-1.3.5.ebuild,v 1.1 2003/04/26 20:55:55 liquidx Exp $
inherit gnome.org
DESCRIPTION="C++ Bindings for ORBit2"
HOMEPAGE="http://www.gnome.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="gnome-base/ORBit2"
S=${WORKDIR}/${P}
src_compile() {
econf || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|