blob: 52c7e7c55c2ab5179abf1b285a31fc982c505543 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/gnome2-wnck/gnome2-wnck-0.04.ebuild,v 1.6 2005/03/07 15:21:51 mcummings Exp $
IUSE=""
inherit perl-module eutils
MY_P=Gnome2-Wnck-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Perl interface to the Window Navigator Construction Kit"
SRC_URI="mirror://sourceforge/gtk2-perl/${MY_P}.tar.gz"
HOMEPAGE="http://gtk2-perl.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ppc"
DEPEND=">=dev-perl/glib-perl-1.042
>=dev-perl/gtk2-perl-1.042
>=x11-libs/libwnck-2
dev-perl/extutils-pkgconfig
>=dev-perl/extutils-depends-0.2*"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-window-close.patch
}
|