diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-01-13 19:09:58 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-01-15 11:11:51 +0100 |
commit | 8dc4784da77830042f2f0370c7bd29f5dcc696f7 (patch) | |
tree | 7ec951ee362ca2102438af30e57ffd4a8137c282 /sci-libs/libticonv/libticonv-1.1.5.ebuild | |
parent | sci-astronomy/stellarium: Version bump to 0.15.1 (diff) | |
download | gentoo-8dc4784da77830042f2f0370c7bd29f5dcc696f7.tar.gz gentoo-8dc4784da77830042f2f0370c7bd29f5dcc696f7.tar.bz2 gentoo-8dc4784da77830042f2f0370c7bd29f5dcc696f7.zip |
sci-libs/libticonv: Version bump to 1.1.5, EAPI bump 5 -> 6
Package-Manager: portage-2.3.0
Closes: https://github.com/gentoo/gentoo/pull/3454
Diffstat (limited to 'sci-libs/libticonv/libticonv-1.1.5.ebuild')
-rw-r--r-- | sci-libs/libticonv/libticonv-1.1.5.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/sci-libs/libticonv/libticonv-1.1.5.ebuild b/sci-libs/libticonv/libticonv-1.1.5.ebuild new file mode 100644 index 000000000000..cabbaf8bf35f --- /dev/null +++ b/sci-libs/libticonv/libticonv-1.1.5.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="Charset conversion library for TI calculators" +HOMEPAGE="http://lpg.ticalc.org/prj_tilp/" +SRC_URI="mirror://sourceforge/tilp/tilp2-linux/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="doc iconv static-libs" + +RDEPEND="dev-libs/glib:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( AUTHORS LOGO NEWS README ChangeLog docs/api.txt ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable iconv) +} + +src_install() { + if use doc; then + HTML_DOCS=( docs/html/. ) + DOCS+=( docs/charsets ) + fi + default + find "${D}" -name '*.la' -delete || die +} |