commit:     e9e337b066b799e00d6ee650d45248a018640940
Author:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 11 14:29:38 2018 +0000
Commit:     Andrey Grozin <grozin <AT> gentoo <DOT> org>
CommitDate: Sun Nov 11 14:29:38 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9e337b0

dev-libs/libunibreak: bump to 4.1

Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-libs/libunibreak/Manifest               |  1 +
 dev-libs/libunibreak/libunibreak-4.1.ebuild | 55 +++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/dev-libs/libunibreak/Manifest b/dev-libs/libunibreak/Manifest
index 3cda64803c2..983c6d6e38a 100644
--- a/dev-libs/libunibreak/Manifest
+++ b/dev-libs/libunibreak/Manifest
@@ -1 +1,2 @@
 DIST libunibreak-4.0.tar.gz 629403 BLAKE2B 
067d09bd48c5381ebef1f3a0ca488732e216234e45977d5c2eee181c9c98b435a7e4030fb5bdbd83035a7937c2107ec05f78dc33158ec64297511d24e329f03d
 SHA512 
43da73f66fabd8fdef444c5a06ad1800464a0aeab590938522d6c19973950a242f2ccc0575a93d10d87bdcf82610452117ac081ddb73f47271a8c2a65897e11c
+DIST libunibreak-4.1.tar.gz 642497 BLAKE2B 
79a09cc19e72bcf98605f3c49649c2d0753774825e737e0682ff4b67d4908be748b81b6ba79827ccc2032b7c5284fc2dd932d61d6775cae841888d6ee4a77b70
 SHA512 
f02a94b1c1757c0321f112ef9b44a17fc9f73c9ec6041f263bb55fe8ec44e5599c6061c4e1f6f92ca9069b282e5a8e40d90dcceaf04b6e2ed6ae948f104e1ce2

diff --git a/dev-libs/libunibreak/libunibreak-4.1.ebuild 
b/dev-libs/libunibreak/libunibreak-4.1.ebuild
new file mode 100644
index 00000000000..132e80d6701
--- /dev/null
+++ b/dev-libs/libunibreak/libunibreak-4.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Line and word breaking library"
+HOMEPAGE="http://vimgadgets.sourceforge.net/libunibreak/";
+SRC_URI="https://github.com/adah1972/${PN}/releases/download/${PN}_$(ver_rs 1- 
'_')/${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="doc +man static-libs"
+
+# Tests require internet access to www.unicode.org
+RESTRICT="test"
+
+DEPEND="man? ( app-doc/doxygen )"
+RDEPEND="!dev-libs/liblinebreak"
+
+src_prepare() {
+       if use man; then
+               echo 'GENERATE_MAN=YES' >> Doxyfile || die
+               echo 'GENERATE_HTML=NO' >> Doxyfile || die
+       fi
+       default
+}
+
+src_configure() {
+       econf $(use_enable static-libs static)
+}
+
+src_compile() {
+       default
+       if use man; then
+               doxygen || die 'doxygen failed'
+               pushd "${S}"/doc/man > /dev/null
+               mv man3 x || die
+               mkdir man3 || die
+               for h in graphemebreak linebreak linebreakdef unibreakbase 
unibreakdef wordbreak; do
+                       mv x/${h}.h.3 man3/ || die "man ${h} not found"
+               done
+               rm -rf x || die
+               popd > /dev/null
+       fi
+}
+
+src_install() {
+       use doc && HTML_DOCS=( doc/html/. )
+       default
+       find "${D}" -name '*.la' -delete || die
+       if use man; then
+               doman doc/man/man3/*.3
+       fi
+}

Reply via email to