blob: 8d30641b1a5ea82446a7b466b44325765a0153bd (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/zenity/zenity-2.8.2.ebuild,v 1.7 2005/03/21 19:18:16 gmsoft Exp $
inherit gnome2 eutils
DESCRIPTION="commandline dialog tool for gnome"
HOMEPAGE="http://www.gnome.org/"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86 ppc alpha sparc hppa ~amd64 ~ia64 ~mips"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2.3.1
>=gnome-base/libglade-2
>=gnome-base/libgnomecanvas-2
dev-libs/popt"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.29
app-text/scrollkeeper
dev-util/pkgconfig"
DOCS="AUTHORS ChangeLog HACKING NEWS README THANKS TODO"
src_unpack() {
unpack ${A}
cd ${S}
# Don't set the UTF-8 codeset before parsing command line arguments.
# Closes bug #45204.
epatch ${FILESDIR}/${PN}-2.6.3-utf8_fix.patch
}
|