mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
51 lines
951 B
Bash
51 lines
951 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Console Progress Bar"
|
|
HOMEPAGE="http://clpbar.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/clpbar/${PN}_${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm x86"
|
|
IUSE="doc"
|
|
|
|
BDEPEND="
|
|
doc? (
|
|
>=app-text/doxygen-1.3.5
|
|
media-gfx/graphviz
|
|
)
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
sed '/cd $(WEB_DIR) && $(MAKE)/d' -i Makefile.am || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
# Fix bug 113392
|
|
econf $(use_enable !sparc use-memalign)
|
|
}
|
|
|
|
src_compile() {
|
|
emake CFLAGS="${CFLAGS}"
|
|
|
|
if use doc; then
|
|
mkdir -p ../www/doxygen/${PV} || die
|
|
emake update-www
|
|
HTML_DOCS=( ../www/doxygen/${PV}/html/. )
|
|
|
|
# remove doxygen working files
|
|
find ../www/doxygen/${PV}/html \( -iname '*.map' -o -iname '*.md5' \) -delete || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dodoc TROUBLESHOOTING debian/changelog
|
|
}
|