summaryrefslogtreecommitdiff
blob: aba03e4946f9ffe59a256385499b6a9690a6e12b (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="5"

inherit eutils

DESCRIPTION="A Braille translation and back-translation library"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
HOMEPAGE="http://code.google.com/p/liblouis/"

LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+wide-unicode"

RDEPEND=""
DEPEND="${RDEPEND}
	sys-apps/help2man
	virtual/pkgconfig"

src_prepare() {
	DOCS="AUTHORS ChangeLog NEWS README TODO"
	default
}

src_configure() {
	econf --disable-static \
		$(use_enable wide-unicode ucs4)
}

src_install() {
	default
	prune_libtool_files
}