blob: e0d4094f81c008aa27145a1973c97e7d7661bb47 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-themes-extras/gnome-themes-extras-0.6.ebuild,v 1.3 2004/03/24 02:16:34 lu_zero Exp $
inherit gnome2
DESCRIPTION="Additional themes for GNOME 2.2"
HOMEPAGE="http://librsvg.sourceforge.net/theme.php"
SLOT="0"
KEYWORDS="~x86 ~sparc ~hppa ~amd64 ~ppc"
IUSE=""
LICENSE="LGPL-2.1 GPL-2 DSL"
RDEPEND=">=x11-libs/gtk+-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
>=dev-util/intltool-0.23"
DOCS="AUTHORS ChangeLog MAINTAINERS README TODO"
src_unpack() {
unpack ${A}
cd ${S}
# fix issues with gtk+ 2.4 (#44988)
epatch ${FILESDIR}/${PN}-0-smooth_engine_gtk_2.4.patch
sed -e 's:gorilla-default:capplet-icons:' \
-i ${S}/Gorilla/gtk-2.0/iconrc.in \
-i ${S}/Gorilla/gtk-2.0/iconrc
EPATCH_OPTS="-d ${S}/Industrial" \
epatch ${FILESDIR}/${PN}-0.5-industrial_uncorrupt.patch
}
|