blob: 2378d2e678167788e453d917c69272d94f6311f7 (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Goo-Canvas/Goo-Canvas-0.06.ebuild,v 1.2 2009/11/23 21:17:48 tove Exp $
EAPI=2
MODULE_AUTHOR=YEWENBIN
inherit perl-module
DESCRIPTION="Perl interface to the GooCanvas"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="x11-libs/goocanvas
dev-perl/gtk2-perl
dev-perl/glib-perl
dev-perl/Cairo"
DEPEND="${RDEPEND}
dev-perl/extutils-depends
dev-perl/extutils-pkgconfig"
PATCHES=(
# this patch fixes segfaults on amd64 platforms
"${FILESDIR}"/fix_implicit_pointer_declaration.patch
)
|