diff options
author | 2015-06-08 21:22:41 +0000 | |
---|---|---|
committer | 2015-06-08 21:22:41 +0000 | |
commit | 921c2f5b468832960c74f2a941fa8e9dbfc24357 (patch) | |
tree | 5cd1fe3febe489f36446c46d5b37c38c918bcea5 /dev-libs | |
parent | Add mask for Gnome 3.16. (diff) | |
download | gentoo-2-921c2f5b468832960c74f2a941fa8e9dbfc24357.tar.gz gentoo-2-921c2f5b468832960c74f2a941fa8e9dbfc24357.tar.bz2 gentoo-2-921c2f5b468832960c74f2a941fa8e9dbfc24357.zip |
Version bump, bug #529024.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libunistring/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libunistring/libunistring-0.9.5.ebuild | 36 |
2 files changed, 43 insertions, 1 deletions
diff --git a/dev-libs/libunistring/ChangeLog b/dev-libs/libunistring/ChangeLog index a4449ced30bf..e4d27b0de125 100644 --- a/dev-libs/libunistring/ChangeLog +++ b/dev-libs/libunistring/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libunistring # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunistring/ChangeLog,v 1.10 2015/05/05 19:36:09 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunistring/ChangeLog,v 1.11 2015/06/08 21:22:41 eva Exp $ + +*libunistring-0.9.5 (08 Jun 2015) + + 08 Jun 2015; Gilles Dartiguelongue <eva@gentoo.org> + +libunistring-0.9.5.ebuild: + Version bump, bug #529024. 05 May 2015; Manuel Rüger <mrueg@gentoo.org> -libunistring-0.9.1.1-r1.ebuild: Remove old. diff --git a/dev-libs/libunistring/libunistring-0.9.5.ebuild b/dev-libs/libunistring/libunistring-0.9.5.ebuild new file mode 100644 index 000000000000..d3d31f90e096 --- /dev/null +++ b/dev-libs/libunistring/libunistring-0.9.5.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunistring/libunistring-0.9.5.ebuild,v 1.1 2015/06/08 21:22:41 eva Exp $ + +EAPI="5" + +inherit eutils + +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/2" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux" +IUSE="doc static-libs" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-nodocs.patch +} + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + dodoc AUTHORS README ChangeLog || die "dodoc failed" + if use doc; then + dohtml doc/*.html || die "dohtml failed" + doinfo doc/*.info || die "doinfo failed" + fi + + emake DESTDIR="${D}" install || die "Install failed" + + prune_libtool_files +} |