blob: 9b2ff5543c8d3bf69399999fc20d8d149ac72180 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-engines-flat/gtk-engines-flat-2.0-r1.ebuild,v 1.10 2005/08/02 09:31:06 leonardop Exp $
inherit gnuconfig
MY_PN="gtk-flat-theme"
MY_P=${MY_PN}-${PV}
DESCRIPTION="GTK+2 Flat Theme Engine"
SRC_URI="http://download.freshmeat.net/themes/gtk2flat/gtk2flat-default.tar.gz"
HOMEPAGE="http://themes.freshmeat.net/projects/gtk2flat/"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
LICENSE="GPL-2"
SLOT="2"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2"
DEPEND="${REPEND}
dev-util/pkgconfig"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
if [[ ${ARCH} == "amd64" ]]; then
gnuconfig_update ${WORKDIR}
fi
}
src_install() {
make DESTDIR="${D}" install || die "Installation failed"
dodoc AUTHORS README
}
|