blob: d71c47a5eab11161aa6146ff151d01965af5966b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/cairo-0.1.18.ebuild,v 1.11 2005/01/01 20:39:16 twp Exp $
DESCRIPTION="A vector graphics library with cross-device output support"
HOMEPAGE="http://cairographics.org/"
SRC_URI="http://cairographics.org/snapshots/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE=""
DEPEND="virtual/x11
!>=x11-base/xfree-4.3.0-r7
virtual/xft
media-libs/fontconfig
>=media-libs/freetype-2*
media-libs/libpixman"
src_compile() {
PKG_CONFIG_PATH=${PKG_CONFIG_PATH+$PKG_CONFIG_PATH:}${FILESDIR} econf || die
emake || die
}
src_install() {
make install DESTDIR=${D}
insinto /usr/lib/pkgconfig
doins ${FILESDIR}/xrender.pc
}
|