blob: 6da7323d2a08c257ee4c2632fe650926a24eb7d0 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Karl Trygve Kalleberg <karltk@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/x11-libs/buffy/buffy-0.2.ebuild,v 1.2 2001/10/07 11:11:08 azarah Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GTK+ theme engine"
SRC_URI="http://reality.sgi.com/offer/src/buffy/${P}.tar.gz"
HOMEPAGE="http://reality.sgi.com/offer/src/buffy/"
DEPEND="virtual/glibc
>=x11-libs/gtk+-1.2.10-r4"
src_compile() {
try ./configure --infodir=/usr/share/info \
--mandir=/usr/share/man \
--prefix=/usr \
--host=${CHOST}
try emake
}
src_install () {
# try make prefix=${D}/usr install
dodoc AUTHORS COPYING INSTALL NEWS README ChangeLog
try make DESTDIR=${D} install
}
|