summaryrefslogtreecommitdiff
blob: e5265e1fd98368d7f5695bd9e8e8a0032d58ef22 (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit autotools

DESCRIPTION="Gtk Theme Selector"
HOMEPAGE="http://members.lycos.co.uk/alexv6/"
SRC_URI="http://members.lycos.co.uk/alexv6/pub/gtk/${P}.tar.bz2"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

# This is only in an overlay for now so don't even try the official mirrors.
RESTRICT="mirror"

DEPEND=">=x11-libs/gtk+-2"
RDEPEND="${DEPEND}"

src_compile() {
	eautoreconf
	econf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	make_desktop_entry ${PN} "GTK+ Prefs" " " "Settings"

	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS ChangeLog NEWS README TODO || die "Installing docs failed"
}