blob: b4cd08ea511263c319d1fa318020ac4acde9c1ed (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/crux/crux-1.9.3.ebuild,v 1.5 2002/10/22 15:45:01 bjb Exp $
DESCRIPTION="Crux is a GTK2 theme engine that will replace the Eazel theme"
HOMEPAGE="http://www.eazel.com"
S=${WORKDIR}/${P}
LICENSE="GPL-2"
SLOT="2"
KEYWORDS="x86 alpha"
RDEPEND=">=x11-libs/gtk+-2.0.5
>=gnome-base/libgnomeui-2.0.1
>=gnome-base/libglade-2.0.0"
DEPEND="${RDEPEND}
sys-devel/libtool"
SRC_URI="mirror://gnome/2.0.0/sources/${PN}/${P}.tar.bz2"
src_compile() {
econf
emake || die " compile failed"
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS TODO
}
|