summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-12-20 17:28:50 +0100
committerJakov Smolić <jsmolic@gentoo.org>2022-12-20 17:30:33 +0100
commitb154ab7837360f2a0fb799eb9f3c01f128e452d3 (patch)
treea4b065865974692edb9d79c2e473f5aaafd00d7d /dev-cpp/pstreams
parentacct-group/cmd5checkpw: treeclean (diff)
downloadgentoo-b154ab7837360f2a0fb799eb9f3c01f128e452d3.tar.gz
gentoo-b154ab7837360f2a0fb799eb9f3c01f128e452d3.tar.bz2
gentoo-b154ab7837360f2a0fb799eb9f3c01f128e452d3.zip
dev-cpp/pstreams: treeclean
Closes: https://bugs.gentoo.org/630396 Closes: https://bugs.gentoo.org/688760 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'dev-cpp/pstreams')
-rw-r--r--dev-cpp/pstreams/Manifest2
-rw-r--r--dev-cpp/pstreams/metadata.xml11
-rw-r--r--dev-cpp/pstreams/pstreams-1.0.1.ebuild44
3 files changed, 0 insertions, 57 deletions
diff --git a/dev-cpp/pstreams/Manifest b/dev-cpp/pstreams/Manifest
deleted file mode 100644
index f5e3e547d8d6..000000000000
--- a/dev-cpp/pstreams/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST pstreams-1.0.1.tar.gz 66188 BLAKE2B 937b9ae833dcace9f0f44dbac6907d5c73c5757f604ea96835c0ddf0ec9abd5fa4f40a1c01872a47fd0bcdc094f90215da6b7f80f261172f93f7b5233b60a5cb SHA512 279f758a4aeba124227e3de07e202f6cd838bfca4f34829a446f2f20cf426bd404f28960b881f810b5f2038e3946d38174ca09e6a07d5dacc0501f41746245e6
-DIST pstreams-docs-1.0.1.tar.gz 178382 BLAKE2B dd44e4c6acd83dfc6896145e77408d7c23150c1156e477ccb4052341e041d82163d0ee3e8069ea5fda9033617c3a1162fc2068835d089f6ce7614477c2e3e58b SHA512 e645cb3d1c20cc0c717d03aa24e500489452d0880af0feddcf234e713878159b22a891ec04a66f0aad6988e71418a224a4ba66064e6a83578ecf957d9af167e2
diff --git a/dev-cpp/pstreams/metadata.xml b/dev-cpp/pstreams/metadata.xml
deleted file mode 100644
index cccd40057baf..000000000000
--- a/dev-cpp/pstreams/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>printing@gentoo.org</email>
- <name>Gentoo Printing Project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">pstreams</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-cpp/pstreams/pstreams-1.0.1.ebuild b/dev-cpp/pstreams/pstreams-1.0.1.ebuild
deleted file mode 100644
index 9f2d12528d54..000000000000
--- a/dev-cpp/pstreams/pstreams-1.0.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="C++ wrapper for the POSIX.2 functions popen(3) and pclose(3)"
-HOMEPAGE="http://pstreams.sourceforge.net/"
-SRC_URI="
- mirror://sourceforge/${PN}/${P}.tar.gz
- doc? ( mirror://sourceforge/${PN}/${PN}-docs-${PV}.tar.gz )"
-
-LICENSE="LGPL-3"
-SLOT="0"
-IUSE="doc"
-KEYWORDS="~amd64 ~x86"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-
-src_compile() {
- if use doc; then
- doxygen -u || die
- emake docs
- fi
-}
-
-src_test() {
- emake \
- CXX="$(tc-getCXX)" \
- CXXFLAGS="${CXXFLAGS}" \
- check
-}
-
-src_install() {
- doheader pstream.h
-
- dodoc AUTHORS ChangeLog README
-
- if use doc ; then
- docinto html
- dodoc -r "${WORKDIR}"/${PN}-docs-${PV}/*
- fi
-}