blob: c24e81919e387ee69505fc89b596a6a0bcf08760 (
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
35
36
37
38
39
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libharu/libharu-2.2.1.ebuild,v 1.2 2011/07/10 15:49:38 jlec Exp $
EAPI=4
inherit eutils
DESCRIPTION="C/C++ library for PDF generation"
HOMEPAGE="http://www.libharu.org/"
SRC_URI="http://libharu.org/files/${P}.tar.bz2"
LICENSE="ZLIB"
SLOT="2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="png zlib static-libs"
DEPEND="
png? ( media-libs/libpng )
zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-libpng-1.5.patch
}
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_with png) \
$(use_with zlib)
}
src_install() {
emake \
INSTALL_STRIP_FLAG="" \
DESTDIR="${D}" install
dodoc README
}
|