commit:     826abdd775f315ee6b4650bda4d54114c2c37f60
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  6 09:10:54 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  6 09:10:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=826abdd7

dev-libs/cdk: add 5.0.20240331

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/cdk/Manifest                |  2 ++
 dev-libs/cdk/cdk-5.0.20240331.ebuild | 63 ++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/dev-libs/cdk/Manifest b/dev-libs/cdk/Manifest
index 3f5daadd8820..3ad50fa1d50a 100644
--- a/dev-libs/cdk/Manifest
+++ b/dev-libs/cdk/Manifest
@@ -1,2 +1,4 @@
 DIST cdk-5.0-20230201.tgz 533972 BLAKE2B 
8667583ea1401ab04dc43dbd93f8580ee898c351f52552889fb642f38ad85536f5fbcc6724659bff83a1f9adc1addf5632c39d9162b628efd341f45e94b2b823
 SHA512 
2b072dc5eba66bb043f56c5d558ddafb0d9281160107f901b5b4c262182946b7c55cf5b1bdf0d0536fd7db6d95fd6b3ddd9dd367fccc63bb0d95eb3c98da58fd
 DIST cdk-5.0-20230201.tgz.asc 729 BLAKE2B 
9076836bb6fd8f89ad4c474b7fc2beb3fa9fd16a3c2d530ce34052af65231e2d77f3879d02ca031be6a7bdac6bba29f40bac3320fc513fc3ba5e617316184ed4
 SHA512 
85e80c49049da9cd335013e564fd15929a127b3fec24bdb50d153196b47f4092c353a7bd6a40211566a7f4d09701cc75d66f9b3b32fed50c6b728e17dc7a166a
+DIST cdk-5.0-20240331.tgz 538287 BLAKE2B 
0d4e3b8d04056aa658e94a29a836cdc4f82c2281783c11eb74715724befe983954b14ae9aae4dd4e17e772d711becb798107e910234aba02fe626e004ef6f216
 SHA512 
dfd5a038ec839e7cfe8850d41bace4cf34b44cf7a52c60912838051a959ecd6b2077a29b1dc152425ce518f5c578236bfa4d6736eaa096727e08bd16785d4d34
+DIST cdk-5.0-20240331.tgz.asc 729 BLAKE2B 
108697e54bbc335cb8aa8e3c4d29fdaffb2a3d8a05f9608f8f5e87ab0cd7ffae74ad9b70ef1dec10cda859e515a19de35b25dbed72dfd185aebab7f92a61153f
 SHA512 
923ecf8ede1b799d6c91220d10f3f4721ac049ee9d0e1716751a4c607fd9e19c67745a202e1cef910821e2c68955733e22e7ef2e6624a9f03fd6fd8e165272b8

diff --git a/dev-libs/cdk/cdk-5.0.20240331.ebuild 
b/dev-libs/cdk/cdk-5.0.20240331.ebuild
new file mode 100644
index 000000000000..aa3072aaa56e
--- /dev/null
+++ b/dev-libs/cdk/cdk-5.0.20240331.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_P="${PN}-$(ver_rs 2 -)"
+
+VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/thomasdickey.asc
+inherit verify-sig
+
+DESCRIPTION="A library of curses widgets"
+HOMEPAGE="https://dickey.his.com/cdk/cdk.html 
https://github.com/ThomasDickey/cdk-snapshots";
+SRC_URI="https://invisible-island.net/archives/${PN}/${MY_P}.tgz";
+SRC_URI+=" verify-sig? ( 
https://invisible-island.net/archives/${PN}/${MY_P}.tgz.asc )"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="MIT"
+SLOT="0/6" # subslot = soname version
+KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
+IUSE="examples unicode"
+
+DEPEND="sys-libs/ncurses:=[unicode(+)?]"
+RDEPEND="${DEPEND}"
+BDEPEND="
+       virtual/pkgconfig
+       verify-sig? ( sec-keys/openpgp-keys-thomasdickey )
+"
+
+src_configure() {
+       if [[ ${CHOST} == *-*-darwin* ]] ; then
+               export ac_cv_prog_LIBTOOL=glibtool
+       fi
+
+       # --with-libtool dropped for now because of broken Makefile
+       # bug #790773
+       #
+       # Fedora and openSUSE at least both build with --enable-const. Without
+       # this, consumers end up broken like gphoto2 in bug #919279.
+       econf \
+               --disable-rpath-hack \
+               --enable-const \
+               --with-shared \
+               --with-pkg-config \
+               --with-ncurses$(usex unicode "w" "")
+}
+
+src_install() {
+       # parallel make installs duplicate libs
+       emake -j1 \
+               DESTDIR="${D}" \
+               DOCUMENT_DIR="${ED}/usr/share/doc/${PF}" \
+               install
+
+       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
+}

Reply via email to