From 40aaaa64e86ba6710bbeb31c4615a6ce80e75e11 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 28 Apr 2021 20:21:43 +0100 Subject: gentoo resync : 28.04.2021 --- dev-libs/liblist/Manifest | 2 +- dev-libs/liblist/liblist-2.4-r1.ebuild | 51 ++++++++++++++++++++++++++++++++ dev-libs/liblist/liblist-2.4.ebuild | 53 ---------------------------------- 3 files changed, 52 insertions(+), 54 deletions(-) create mode 100644 dev-libs/liblist/liblist-2.4-r1.ebuild delete mode 100644 dev-libs/liblist/liblist-2.4.ebuild (limited to 'dev-libs/liblist') diff --git a/dev-libs/liblist/Manifest b/dev-libs/liblist/Manifest index 699a2a636b0a..9a6d04b9b27f 100644 --- a/dev-libs/liblist/Manifest +++ b/dev-libs/liblist/Manifest @@ -1,3 +1,3 @@ DIST liblist-2.4.tar.bz2 275234 BLAKE2B 2f18d8b85476bd9369ef597553a546450fd33b3f3b4486ca371e6efd810a51b23ca3880300e0ecf826e9a9e8591f2b90a6a0006d224b34552f77416a83f7175e SHA512 814a02e4e47de8d234e592b87156533c30563c64c3a7515712fb9b75119bcee21796232b2a5abf7e4ab892932fa256890ad175aecb75aad8fb4614c6f4fbe3dd -EBUILD liblist-2.4.ebuild 1207 BLAKE2B 712b61bce5ed43e2388aa24b2b900d80008400d517ade4e77a578305a5c50c46a2725ad86e472ce93017b67e02576f0cd9c5546f87daed633d1bc01a66373533 SHA512 a229a31f5696516eae6054b322749477beaef1b8cd664e46c9c11c2b53d2dcebe56a36159ee8478f3eb715ae88ea9a3e8ccdd4b0a281a1372d41f398a252b5a6 +EBUILD liblist-2.4-r1.ebuild 1170 BLAKE2B e042525ad9c579b056e2fa5b3bf8a50f2b16e300782ca183c696d3a90c146b27102d4f9da40650611a09694e66d2ff1643eea82f84107f9fcd958e3817a9f2af SHA512 4d5222708f38d78a10643c1a213a50b80b05225c2c0119bfd4879b2723f7c67274adf7f2b0cf846a969a356628a59eaef1cf4a0cd65e2b4f64767be8fe49a468 MISC metadata.xml 356 BLAKE2B 2e6c2a54ee9fd3a59c8e211ac442b72d4015961357c5ec18d277f4a6b322c2ba3cfc4fb107732037149d290c308ced9c357198fddf62649a6fea40d6da0fa055 SHA512 8f96ffa65c0fdb773f41835d285cf5d2aa59d84ab3c096ec6b6224d057c32b657f0d3de7a531fbb602ce2d84d2fdbcbf4a96a9947a2cd244dd90fcf7b8972f11 diff --git a/dev-libs/liblist/liblist-2.4-r1.ebuild b/dev-libs/liblist/liblist-2.4-r1.ebuild new file mode 100644 index 000000000000..4ff0ef02da9f --- /dev/null +++ b/dev-libs/liblist/liblist-2.4-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Generic linked-list manipulation routines, plus queues and stacks" +HOMEPAGE="http://ohnopub.net/liblist" +SRC_URI="ftp://ohnopublishing.net/mirror/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux" +IUSE="doc examples" + +BDEPEND=" + doc? ( + dev-texlive/texlive-metapost + media-gfx/transfig + virtual/latex-base + ) +" + +src_configure() { + econf \ + --disable-static \ + $(use_enable doc docs) \ + $(use_enable examples) +} + +src_install() { + default + + if use examples; then + docinto examples + dodoc examples/{*.c,Makefile,README} + docinto examples/cache + dodoc examples/cache/{*.c,README} + fi + + docompress -x /usr/share/doc/${PF}/{list.0,paper.dvi,examples} + + # no static archives + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + elog "Note that man pages for this package have been renamed to avoid" + elog "name collisions with some system functions. However, the libs" + elog "and header files have not been changed." + elog "The new names are liblist, lcache, liblist_queue, and liblist_stack." +} diff --git a/dev-libs/liblist/liblist-2.4.ebuild b/dev-libs/liblist/liblist-2.4.ebuild deleted file mode 100644 index 928ed1b2bfa5..000000000000 --- a/dev-libs/liblist/liblist-2.4.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Generic linked-list manipulation routines, plus queues and stacks" -HOMEPAGE="http://ohnopub.net/liblist" -SRC_URI="ftp://ohnopublishing.net/mirror/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux" -IUSE="doc examples" - -RDEPEND=" - doc? ( - dev-texlive/texlive-metapost - media-gfx/transfig - virtual/latex-base - )" -DEPEND="${RDEPEND}" - -src_configure() { - econf \ - --disable-static \ - $(use_enable doc docs) \ - $(use_enable examples) -} - -src_install() { - default - - if use examples; then - docinto examples - dodoc examples/{*.c,Makefile,README} - docinto examples/cache - dodoc examples/cache/{*.c,README} - fi - - docompress -x /usr/share/doc/${PF}/{list.0,paper.dvi,examples} - - # no static archives - find "${D}" -name '*.la' -delete || die -} - -pkg_postinst() { - elog "Note that man pages for this package have been renamed to avoid" - elog "name collisions with some system functions. However, the libs" - elog "and header files have not been changed." - elog "The new names are liblist, lcache, liblist_queue, and liblist_stack." -} -- cgit v1.2.3