blob: a4e6b935a9044a512641a0e024c4726616e65baa (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/drgeo/drgeo-0.9.12.ebuild,v 1.2 2005/02/06 02:15:26 cryos Exp $
DESCRIPTION="Interactive geometry package"
HOMEPAGE="http://www.ofset.org/drgeo"
SRC_URI="mirror://sourceforge/ofset/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ~ppc"
IUSE=""
DEPEND=">=x11-libs/gtk+-2
>=gnome-base/libglade-2
>=dev-libs/libxml2-2
>=dev-util/guile-1.4"
src_compile() {
econf || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING ChangeLog README NEWS TODO
}
|