summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-11-05 23:33:06 +0100
committerMichał Górny <mgorny@gentoo.org>2019-11-05 23:33:06 +0100
commitbddc0f7fe456aa6d401c41bd629b08560bef58ce (patch)
tree16cb6f4d9f9062a35b460e699892df2f175ae435 /dev-libs
parentdev-vcs/cvsd: Remove last-rited pkg (diff)
downloadgentoo-bddc0f7fe456aa6d401c41bd629b08560bef58ce.tar.gz
gentoo-bddc0f7fe456aa6d401c41bd629b08560bef58ce.tar.bz2
gentoo-bddc0f7fe456aa6d401c41bd629b08560bef58ce.zip
dev-libs/xplc: Remove last-rited pkg
Bug: https://bugs.gentoo.org/696252 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/xplc/Manifest1
-rw-r--r--dev-libs/xplc/files/xplc-0.3.13-as-needed.patch22
-rw-r--r--dev-libs/xplc/metadata.xml9
-rw-r--r--dev-libs/xplc/xplc-0.3.13-r1.ebuild43
4 files changed, 0 insertions, 75 deletions
diff --git a/dev-libs/xplc/Manifest b/dev-libs/xplc/Manifest
deleted file mode 100644
index 5ca75edbf85c..000000000000
--- a/dev-libs/xplc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xplc-0.3.13.tar.gz 175431 BLAKE2B fb013a3e1a3c75b9de0ee8af43fce161811e5b99e5386a1ea5d0a19c36db3ec70d1cbad5d0848bb76857ecf37ee5b3006315a4663b1eb463b1915a8958ababbd SHA512 6969ed16c282589ddc285678e1c02016810f83c4c0fea373d8b7a72c97474e6cc21ca3f8f7a7a6aae814037dfae51c3a41bd39f13a67445552b6a7c1b698195d
diff --git a/dev-libs/xplc/files/xplc-0.3.13-as-needed.patch b/dev-libs/xplc/files/xplc-0.3.13-as-needed.patch
deleted file mode 100644
index 3e002db2ad00..000000000000
--- a/dev-libs/xplc/files/xplc-0.3.13-as-needed.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- config/rules.mk.orig 2006-05-06 19:28:46.000000000 +0200
-+++ config/rules.mk 2006-05-06 19:28:53.000000000 +0200
-@@ -44,7 +44,7 @@
- $(RANLIB) $@
-
- %.so:
-- $(LINK.cc) $(SHARED) $^ -o $@
-+ $(LINK.cc) $(SHARED) $^ $(LDLIBS) -o $@
-
- %.dll:
- $(LINK.cc) $(SHARED) $^ -o $@
---- xplc/vars.mk.orig 2006-05-06 19:32:06.000000000 +0200
-+++ xplc/vars.mk 2006-05-06 19:32:12.000000000 +0200
-@@ -32,7 +32,7 @@
-
- ifneq ("$(enable_loader)", "no")
- ifneq ("$(with_dlopen)", "no")
--libxplc.so: LDFLAGS+=$(with_dlopen)
-+libxplc.so: LDLIBS+=$(with_dlopen)
- endif
- endif
-
diff --git a/dev-libs/xplc/metadata.xml b/dev-libs/xplc/metadata.xml
deleted file mode 100644
index 6f5064e23b85..000000000000
--- a/dev-libs/xplc/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription>cross platform lightweight components library for C++</longdescription>
- <upstream>
- <remote-id type="sourceforge">xplc</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-libs/xplc/xplc-0.3.13-r1.ebuild b/dev-libs/xplc/xplc-0.3.13-r1.ebuild
deleted file mode 100644
index 3a4f3279917b..000000000000
--- a/dev-libs/xplc/xplc-0.3.13-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="cross platform lightweight components library for C++"
-HOMEPAGE="http://xplc.sourceforge.net"
-SRC_URI="mirror://sourceforge/xplc/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc sparc x86"
-IUSE=""
-
-DEPEND="virtual/pkgconfig"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- epatch "${FILESDIR}/${P}-as-needed.patch"
-
- #solve conflict with uuidgen utility installed by sys-fs/e2fsprogs (#116699)
- sed -i -e "s/uuidgen/xplc-uuidgen/g" -e "s/uuidcdef/xplc-uuidcdef/g" \
- uuid/{rules.mk,vars.mk} config/rules.mk \
- uuid/bin/*.1 include/xplc/*.h && \
- mv uuid/bin/uuidgen.1 uuid/bin/xplc-uuidgen.1 &&
- mv uuid/bin/uuidgen.c uuid/bin/xplc-uuidgen.c ||
- die "uuidgen rename failed"
-}
-
-src_test() {
- make tests || die "at least one test has failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dosym /usr/lib/pkgconfig/${P}.pc /usr/lib/pkgconfig/${PN}.pc
- dodoc LICENSE README NEWS CREDITS
-}