blob: 077480bdb153439519f15588b0bbec6e36fddf2a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-scheme/guile-cairo/guile-cairo-1.4.0.ebuild,v 1.4 2009/06/05 17:20:08 fmccor Exp $
inherit eutils
DESCRIPTION="Wraps the Cairo graphics library for Guile Scheme"
HOMEPAGE="http://home.gna.org/guile-cairo/"
SRC_URI="http://download.gna.org/${PN}/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-scheme/guile-1.8
>=x11-libs/cairo-1.4"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
# epatch "${FILESDIR}"/${PV}-various-fixes-20070601.patch
}
src_install() {
emake -j1 DESTDIR="${D}" install || die "install failed"
dodoc ChangeLog || die "dodoc failed"
}
|