blob: 961547fd73fa4d5ab7959f59d92947b64482a411 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-libs/rep-gtk/rep-gtk-0.15-r2.ebuild,v 1.1 2001/10/06 12:36:36 azarah Exp $
A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="GTK/GDK bindings for the librep Lisp environment"
SRC_URI="http://prdownloads.sourceforge.net/rep-gtk/"${A}
HOMEPAGE="http://rep-gtk.sourceforge.net/"
DEPEND=">=x11-libs/gtk+-1.2.10-r4
>=dev-libs/librep-0.13.4
gnome? ( >=gnome-base/libglade-0.17-r1
>=media-libs/gdk-pixbuf-0.11.0-r1 )"
RDEPEND=">=x11-libs/gtk+-1.2.10-r4
gnome? ( >=gnome-base/libglade-0.17-r1
>=media-libs/gdk-pixbuf-0.11.0-r1 )"
src_compile() {
if [ -n "`use gnome`" ]
then
try ./configure --host=${CHOST} --with-gnome --with-libglade
else
try ./configure --host=${CHOST} --without-gnome --without-libglade \
--without-gdk-pixbuf --without-gnome-canvas-pixbuf
fi
try make
}
src_install() {
try make DESTDIR=${D} install
dodoc AUTHORS BUGS COPYING ChangeLog README* TODO
docinto examples
dodoc examples/*
}
|