blob: 8356513585b9ab43a9e48e573aa44db7bd7683cf (
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
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/gucharmap-1.2.0.ebuild,v 1.11 2004/06/24 22:07:14 agriffis Exp $
inherit gnome2 eutils
DESCRIPTION="Unicode charachter map viewer"
HOMEPAGE="http://gucharmap.sourceforge.net/"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc alpha sparc hppa amd64 ia64 mips"
IUSE="gnome cjk"
RDEPEND=">=x11-libs/gtk+-2.2
dev-libs/popt
gnome? ( >=gnome-base/libgnome-2.2
>=gnome-base/libgnomeui-2.2 )
!<gnome-extra/gnome-utils-2.3"
DEPEND="${RDEPEND}
dev-util/pkgconfig
app-text/scrollkeeper
>=dev-util/intltool-0.22"
G2CONF="${G2CONF} $(use_enable gnome) $(use_enable cjk unihan) --disable-gtk-immodules"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gcc2_fix.patch
}
pkg_postinst() {
einfo "Registering GTK+ input modules..."
${ROOT}/usr/bin/gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
}
pkg_postrm() {
einfo "Registering GTK+ input modules..."
${ROOT}/usr/bin/gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
}
|