blob: 1cd6d9fe2e9af4b39427997225c731b2fa2f9cde (
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
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit autotools multilib
MY_P="leptonlib-${PV}"
DESCRIPTION="An open source C library for image processing and analysis"
HOMEPAGE="http://www.leptonica.com/"
SRC_URI="http://www.leptonica.com/source/${MY_P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="media-libs/jpeg
media-libs/giflib
media-libs/tiff"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
DOCS=( README version-notes )
src_prepare() {
# build shared library
epatch "${FILESDIR}"/${PN}-build-shared.diff
eautoreconf
# unhtmlize docs (they're just one big <pre/>s)
local docf
for _docf in ${DOCS[@]}; do
awk '/<\/pre>/{s--} {if (s) print $0} /<pre>/{s++}' \
${_docf}.html > ${_docf} || die 'awk failed.'
done
}
src_install() {
emake DESTDIR="${D}" install || die 'emake install failed.'
dodoc ${DOCS[@]} || die 'dodoc failed.'
# remove .la file, it was needed only to build shared lib
rm "${D}"/usr/$(get_libdir)/liblept.la || die 'rm failed.'
}
|