summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2017-12-27 01:05:28 +0300
committerMikle Kolyada <zlogene@gentoo.org>2017-12-27 01:05:28 +0300
commita0c72313135fd2d97d23751981b9fb49e3d5ce71 (patch)
treeb1f0a83d5d49d817f215f5bd80dd0711195d8bbc /dev-libs/liblist
parentdev-libs/liblist: amd64 stable wrt bug #642276 (diff)
downloadgentoo-a0c72313135fd2d97d23751981b9fb49e3d5ce71.tar.gz
gentoo-a0c72313135fd2d97d23751981b9fb49e3d5ce71.tar.bz2
gentoo-a0c72313135fd2d97d23751981b9fb49e3d5ce71.zip
dev-libs/liblist: Drop old
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'dev-libs/liblist')
-rw-r--r--dev-libs/liblist/Manifest1
-rw-r--r--dev-libs/liblist/liblist-2.3.1-r1.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-libs/liblist/Manifest b/dev-libs/liblist/Manifest
index 2fae20c4378e..66420c8739c8 100644
--- a/dev-libs/liblist/Manifest
+++ b/dev-libs/liblist/Manifest
@@ -1,2 +1 @@
-DIST liblist-2.3.1.tar.bz2 257253 BLAKE2B 3ae30654d39db79e26aacb3f101bf217a7d97dcb8f29f261b0d8840f24a069759fc7d4a1b53d345828b96bdb3c30656a099bef3d1ce29cf6f5608950971414cc SHA512 4bb9cc678bafc3be68f94d028aa9a9a9c9dd792043adc6e7916955afa07b6e94653bd235ee81880307e433e07130823daf1fd36ba0663da7d09e5f4eb84efc6c
DIST liblist-2.4.tar.bz2 275234 BLAKE2B 2f18d8b85476bd9369ef597553a546450fd33b3f3b4486ca371e6efd810a51b23ca3880300e0ecf826e9a9e8591f2b90a6a0006d224b34552f77416a83f7175e SHA512 814a02e4e47de8d234e592b87156533c30563c64c3a7515712fb9b75119bcee21796232b2a5abf7e4ab892932fa256890ad175aecb75aad8fb4614c6f4fbe3dd
diff --git a/dev-libs/liblist/liblist-2.3.1-r1.ebuild b/dev-libs/liblist/liblist-2.3.1-r1.ebuild
deleted file mode 100644
index 325032cde687..000000000000
--- a/dev-libs/liblist/liblist-2.3.1-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=3
-
-inherit multilib
-
-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 static-libs"
-
-DEPEND="doc? ( media-gfx/transfig
- dev-texlive/texlive-metapost
- virtual/latex-base )"
-
-src_configure() {
- econf --docdir="${EPREFIX}"/usr/share/doc/${PF} \
- $(use_enable doc docs) \
- $(use_enable examples) \
- $(use_enable static-libs static)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc README || die
-
- if use examples; then
- insinto /usr/share/doc/${PF}/examples
- doins examples/{*.c,Makefile,README} || die
- insinto /usr/share/doc/${PF}/examples/cache
- doins examples/cache/{*.c,README} || die
- fi
-
- if ! use static-libs; then
- rm -v "${ED}"/usr/$(get_libdir)/liblist.la || die
- if use examples; then
- rm -v "${ED}"/usr/$(get_libdir)/libcache.la || die
- fi
- fi
-}
-
-pkg_postinst() {
- elog "Note the 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 llist, lcache, lqueue, and lstack."
-}