diff options
author | 2009-02-03 14:51:03 +0000 | |
---|---|---|
committer | 2009-02-03 14:51:03 +0000 | |
commit | eb5dd4f4f269cfcb472df891adf09f5a7ece9121 (patch) | |
tree | 48a850566078122e53a557182527562d9db143c5 /sci-libs/libticonv | |
parent | Initial import from sunrise, thanks to Christian Helbling and all contributor... (diff) | |
download | gentoo-2-eb5dd4f4f269cfcb472df891adf09f5a7ece9121.tar.gz gentoo-2-eb5dd4f4f269cfcb472df891adf09f5a7ece9121.tar.bz2 gentoo-2-eb5dd4f4f269cfcb472df891adf09f5a7ece9121.zip |
Initial import from sunrise, thanks to Christian Helbling and all contributors in bug #146028
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs/libticonv')
-rw-r--r-- | sci-libs/libticonv/ChangeLog | 39 | ||||
-rw-r--r-- | sci-libs/libticonv/libticonv-1.1.0.ebuild | 38 | ||||
-rw-r--r-- | sci-libs/libticonv/metadata.xml | 10 |
3 files changed, 87 insertions, 0 deletions
diff --git a/sci-libs/libticonv/ChangeLog b/sci-libs/libticonv/ChangeLog new file mode 100644 index 000000000000..f7410cc3998b --- /dev/null +++ b/sci-libs/libticonv/ChangeLog @@ -0,0 +1,39 @@ +# ChangeLog for sci-libs/libticonv +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libticonv/ChangeLog,v 1.1 2009/02/03 14:51:03 bicatali Exp $ + +*libticonv-1.1.0 (03 Feb 2009) + + 03 Feb 2009; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml, + +libticonv-1.1.0.ebuild: + Initial import from sunrise, thanks to Christian Helbling and all + contributors in bug #146028 + + 15 Jan 2008; Christian Helbling <helch@gmx.ch> -libticonv-1.0.4.ebuild, + +libticonv-1.1.0.ebuild: + Version bump + + 22 Sep 2007; Christian Helbling <helch@gmx.ch> -libticonv-1.0.2.ebuild, + +libticonv-1.0.4.ebuild: + version bump + + 30 Jun 2007; Jakub Moc <jakub@gentoo.org> libticonv-1.0.2.ebuild: + Fix up gettext dependencies + + 15 Jun 2007; Christian Helbling <helch@gmx.ch> +libticonv-1.0.2.ebuild, + -libticonv-20061030.ebuild: + Version bump. Better version numbers. + + 04 Dec 2006; Markus Ullmann <jokey@gentoo.org> + -libticonv-20060723-r1.ebuild, + -files/libticonv-20060723-bugfixes-20060807.diff: + Remove old + + 02 Dec 2006; Christian Helbling <helch@gmx.ch> +libticonv-20061030.ebuild: + Version bump + + 04 Sep 2006; Christian Helbling <helch@gmx.ch> + +libticonv-20060723-r1.ebuild, + +files/libticonv-20060723-bugfixes-20060807.diff, +metadata.xml: + New ebuild for bug 146028 + diff --git a/sci-libs/libticonv/libticonv-1.1.0.ebuild b/sci-libs/libticonv/libticonv-1.1.0.ebuild new file mode 100644 index 000000000000..1418a324c7d2 --- /dev/null +++ b/sci-libs/libticonv/libticonv-1.1.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libticonv/libticonv-1.1.0.ebuild,v 1.1 2009/02/03 14:51:03 bicatali Exp $ + +EAPI=2 + +DESCRIPTION="Charset conversion library for TI calculators" +HOMEPAGE="http://lpg.ticalc.org/prj_tilp/" +SRC_URI="mirror://sourceforge/gtktiemu/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc iconv nls" + +RDEPEND=">=dev-libs/glib-2.6.0 + nls? ( virtual/libintl )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( sys-devel/gettext )" + +src_configure() { + econf \ + --disable-rpath \ + $(use_enable nls) \ + $(use_enable iconv) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS LOGO NEWS README ChangeLog docs/api.txt + if use doc; then + dohtml docs/html/* + docinto charsets + dohtml docs/charsets/* + fi +} diff --git a/sci-libs/libticonv/metadata.xml b/sci-libs/libticonv/metadata.xml new file mode 100644 index 000000000000..649d5428a436 --- /dev/null +++ b/sci-libs/libticonv/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sci</herd> +<longdescription lang="en"> + The libticonv package is a library which handles the various TI + charsets and conversion to/from UTF-8/16 through a set of functions + which constitutes a common API. +</longdescription> +</pkgmetadata> |