2022-01-23 22:29:17 +03:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2021-05-18 08:43:16 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
MY_P="${PN}-$(ver_rs 2 -)"
|
|
|
|
|
|
|
|
DESCRIPTION="A library of curses widgets"
|
2022-01-23 22:29:17 +03:00
|
|
|
HOMEPAGE="https://dickey.his.com/cdk/cdk.html https://github.com/ThomasDickey/cdk-snapshots"
|
2021-05-18 08:43:16 +03:00
|
|
|
SRC_URI="ftp://ftp.invisible-island.net/cdk/${MY_P}.tgz"
|
|
|
|
S="${WORKDIR}"/${MY_P}
|
|
|
|
|
|
|
|
LICENSE="BSD"
|
|
|
|
SLOT="0/6" # subslot = soname version
|
2023-05-25 15:03:36 +03:00
|
|
|
KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux"
|
2021-05-18 08:43:16 +03:00
|
|
|
IUSE="examples unicode"
|
|
|
|
|
2021-07-19 15:36:41 +03:00
|
|
|
DEPEND="sys-libs/ncurses:=[unicode(+)?]"
|
2021-05-18 08:43:16 +03:00
|
|
|
RDEPEND="${DEPEND}"
|
2021-05-19 08:42:30 +03:00
|
|
|
BDEPEND="virtual/pkgconfig"
|
2021-05-18 08:43:16 +03:00
|
|
|
|
|
|
|
PATCHES=( "${FILESDIR}"/${PN}-5.0.20120323-parallel-make.patch )
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
if [[ ${CHOST} == *-*-darwin* ]] ; then
|
|
|
|
export ac_cv_prog_LIBTOOL=glibtool
|
|
|
|
fi
|
|
|
|
|
2021-05-19 08:42:30 +03:00
|
|
|
# --with-libtool dropped for now because of broken Makefile
|
|
|
|
# bug #790773
|
2021-05-18 08:43:16 +03:00
|
|
|
econf \
|
|
|
|
--disable-rpath-hack \
|
|
|
|
--with-shared \
|
|
|
|
--with-pkg-config \
|
|
|
|
--with-ncurses$(usex unicode "w" "")
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
# parallel make installs duplicate libs
|
|
|
|
emake -j1 \
|
|
|
|
DESTDIR="${D}" \
|
2021-05-19 08:42:30 +03:00
|
|
|
DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" \
|
|
|
|
install
|
2021-05-18 08:43:16 +03:00
|
|
|
|
|
|
|
if use examples ; then
|
|
|
|
local x
|
|
|
|
for x in include c++ demos examples cli cli/utils cli/samples ; do
|
|
|
|
docinto ${x}
|
|
|
|
find ${x} -maxdepth 1 -mindepth 1 -type f -print0 | xargs -0 dodoc || die
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
find "${ED}" \( -name '*.a' -or -name '*.la' \) -delete || die
|
|
|
|
}
|