dev-libs/libunibreak - 7.0 (gentoo)

Search

Install

Install this version:

emerge -a =dev-libs/libunibreak-7.0

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-libs/libunibreak-7.0

Or alternatively:

emerge --autounmask-write -a =dev-libs/libunibreak-7.0

Package Information

Description:
Line and word breaking library
Homepage:
http://vimgadgets.sourceforge.net/libunibreak/ https://github.com/adah1972/libunibreak
License:
ZLIB

Ebuild Details

Version EAPI Keywords Slot
7.0 8 ~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86 0/7
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="Line and word breaking library"
HOMEPAGE="http://vimgadgets.sourceforge.net/libunibreak/
	https://github.com/adah1972/libunibreak"
SRC_URI="https://github.com/adah1972/${PN}/archive/refs/tags/${PN}_${PV/./_}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${PN}_${PV/./_}

LICENSE="ZLIB"
SLOT="0/7"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
IUSE="doc +man static-libs test"
RESTRICT="!test? ( test )"

BDEPEND="man? ( app-text/doxygen )
	doc? ( app-text/doxygen media-gfx/graphviz )"

src_prepare() {
	default
	./bootstrap || die

	if use man; then
		echo 'GENERATE_MAN=YES' >> Doxyfile || die
	fi
	if use doc; then
		echo 'GENERATE_HTML=YES' >> Doxyfile || die
	else
		echo 'GENERATE_HTML=NO' >> Doxyfile || die
	fi
}

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
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-libs/libunibreak | euse -E <flag> -p dev-libs/libunibreak | euse -D <flag> -p dev-libs/libunibreak

Global/Standard Flags

doc
man
Default: Enabled (+)

Dependencies

BDEPEND

man? ( app-text/doxygen )
	doc? ( app-text/doxygen media-gfx/graphviz )

Manifest for 7.0

Type File Size Source URLs
DIST libunibreak-7.0.tar.gz 175378 bytes https://github.com/adah1972/libunibreak/archive/refs/tags/libunibreak_7_0.tar.gz