blob: f0548d11fe75f7051358003b269aae785019a33d (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/gtk2-spell/gtk2-spell-1.03.ebuild,v 1.15 2008/01/17 16:37:47 flameeyes Exp $
inherit perl-module
MY_P=Gtk2-Spell-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Bindings for GtkSpell with Gtk2.x"
SRC_URI="mirror://cpan/authors/id/M/ML/MLEHMANN/${MY_P}.tar.gz"
HOMEPAGE="http://gtk2-perl.sf.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ~hppa ia64 ~ppc sparc x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2
>=app-text/gtkspell-2
>=dev-perl/glib-perl-1.012
>=dev-perl/gtk2-perl-1.012
dev-lang/perl"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd ${S}
# Without this it cannot find gtkspell <rigo@home.nl>
sed -ie "s:\#my:my:g" Makefile.PL || die "sed failed"
}
|