blob: b3b0850c97a4cb45ee7931f4ffbcbb7d378ee914 (
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
32
33
34
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php5/pecl-haru/pecl-haru-1.0.0.ebuild,v 1.1 2010/09/26 18:22:35 olemarkus Exp $
EAPI=3
PHP_EXT_NAME="haru"
inherit php-ext-pecl-r1
DESCRIPTION="An interface to libharu, a PDF generator"
LICENSE="PHP-3.01"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="png zlib"
DEPEND="media-libs/libharu[png?,zlib?]"
RDEPEND="${DEPEND}"
need_php_by_category
src_configure() {
true # php-ext-*-r1 doesn't really support EAPI=3
}
src_compile() {
# config.m4 is broken checking paths, so we need to override it
my_conf="--with-haru=/usr"
use png && my_conf+=" --with-png-dir=/usr"
use zlib && my_conf+=" --with-zlib-dir=/usr"
php-ext-source-r1_src_compile
}
|