diff options
author | 2010-04-10 17:34:52 +0000 | |
---|---|---|
committer | 2010-04-10 17:34:52 +0000 | |
commit | d7ced59a9edc6e85a2a713622515ffe3315e1ced (patch) | |
tree | 4d15975d6afb9b64f4541b9386f7d989b7560a9f /dev-libs | |
parent | use static libraries and update metadata (diff) | |
download | gentoo-2-d7ced59a9edc6e85a2a713622515ffe3315e1ced.tar.gz gentoo-2-d7ced59a9edc6e85a2a713622515ffe3315e1ced.tar.bz2 gentoo-2-d7ced59a9edc6e85a2a713622515ffe3315e1ced.zip |
Initial commit (bug #271635). This is a dep needed for guile-2.0
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libunistring/ChangeLog | 10 | ||||
-rw-r--r-- | dev-libs/libunistring/libunistring-0.9.1.1.ebuild | 35 | ||||
-rw-r--r-- | dev-libs/libunistring/metadata.xml | 20 |
3 files changed, 65 insertions, 0 deletions
diff --git a/dev-libs/libunistring/ChangeLog b/dev-libs/libunistring/ChangeLog new file mode 100644 index 000000000000..f4613c5ad0bc --- /dev/null +++ b/dev-libs/libunistring/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-libs/libunistring +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunistring/ChangeLog,v 1.1 2010/04/10 17:34:52 chiiph Exp $ + +*libunistring-0.9.1.1 (10 Apr 2010) + + 10 Apr 2010; Tomas Touceda <chiiph@gentoo.org> + +libunistring-0.9.1.1.ebuild, +metadata.xml: + Initial commit (bug #271635). This is a dep needed for guile-2.0 + diff --git a/dev-libs/libunistring/libunistring-0.9.1.1.ebuild b/dev-libs/libunistring/libunistring-0.9.1.1.ebuild new file mode 100644 index 000000000000..35c4437416df --- /dev/null +++ b/dev-libs/libunistring/libunistring-0.9.1.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunistring/libunistring-0.9.1.1.ebuild,v 1.1 2010/04/10 17:34:52 chiiph Exp $ + +EAPI="2" + +DESCRIPTION="Library for manipulating Unicode strings and C strings according to the Unicode standard" +HOMEPAGE="http://www.gnu.org/software/libunistring/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="LGPL-3 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_compile() { + if use doc; then + emake -C doc info html || die "Build doc failed" + fi + + emake || die "Build failed" +} + +src_install() { + dodoc AUTHORS README ChangeLog + if use doc; then + dohtml doc/libunistring.html + doinfo doc/libunistring.info + fi + + emake DESTDIR="${D}" install || die "Install failed" +} diff --git a/dev-libs/libunistring/metadata.xml b/dev-libs/libunistring/metadata.xml new file mode 100644 index 000000000000..629fca50d693 --- /dev/null +++ b/dev-libs/libunistring/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>scheme</herd> +<maintainer> +<email>chiiph@gentoo.org</email> +<name>Tomas Touceda</name> +</maintainer> +<longdescription lang="en"> + Text files are nowadays usually encoded in Unicode, and may consist of very + different scripts – from Latin letters to Chinese Hanzi –, with many kinds + of special characters – accents, right-to-left writing marks, hyphens, Roman + numbers, and much more. But the POSIX platform APIs for text do not contain + adequate functions for dealing with particular properties of many Unicode + characters. In fact, the POSIX APIs for text have several assumptions at + their base which don't hold for Unicode text. + This library provides functions for manipulating Unicode strings and for + manipulating C strings according to the Unicode standard. +</longdescription> +</pkgmetadata> |