summaryrefslogtreecommitdiff
blob: ce6793689471cba9286626b9126e996c638cd90d (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
49
50
51
52
53
54
55
# 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/${P}.tar.gz"

LICENSE="Apache-2.0"
KEYWORDS="~amd64 ~x86"
IUSE=""

SLOT="0"

DEPEND="virtual/jpeg
	media-libs/giflib
	media-libs/tiff"
RDEPEND="${DEPEND}"

#S=${WORKDIR}/${MY_P}

DOCS=( README version-notes )

src_prepare() {
	epatch "${FILESDIR}/${P}-pngio.patch"
	# We need a fake m4 dir, as setting AT_M4DIR to
	# an empty value does not make eAT forget to
	# add "-I m4" to the AT commands
	#mkdir m4
	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.'

	# remove fake m4 dir
	rm m4/*
	rmdir m4
}