30 lines
727 B
Bash
30 lines
727 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-haru/pecl-haru-1.0.3.ebuild,v 1.1 2012/02/02 12:16:08 olemarkus Exp $
|
|
|
|
EAPI=4
|
|
|
|
PHP_EXT_NAME="haru"
|
|
|
|
USE_PHP="php5-3 php5-4"
|
|
|
|
inherit php-ext-pecl-r2
|
|
|
|
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}"
|
|
|
|
src_configure() {
|
|
# 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-r2_src_configure
|
|
}
|