dev-libs/cgicc: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Sat, 12 Oct 2019 08:09:09 +0000 (10:09 +0200)
committerMichał Górny <mgorny@gentoo.org>
Sat, 12 Oct 2019 08:09:09 +0000 (10:09 +0200)
Closes: https://bugs.gentoo.org/694166
Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-libs/cgicc/Manifest [deleted file]
dev-libs/cgicc/cgicc-3.2.16.ebuild [deleted file]
dev-libs/cgicc/files/3.2.10-fix-pkgconfig.patch [deleted file]
dev-libs/cgicc/files/cgicc-3.2.16-fix-doc-building.patch [deleted file]
dev-libs/cgicc/metadata.xml [deleted file]
profiles/package.mask

diff --git a/dev-libs/cgicc/Manifest b/dev-libs/cgicc/Manifest
deleted file mode 100644 (file)
index 3c61960..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST cgicc-3.2.16.tar.gz 1409037 BLAKE2B 414f0f9e1cfe8cac0bc55ed34bdd6d745595e2fd55329923fa47d269bb7abb3f1d2761ff9810c96930657c563f5f8aa5285c58943fca072273af3088205629ed SHA512 3334777204f3de57e80f759503db08076fe8e7a12cf779bb50345e7d06c6be4cc612b473bd74eded5debd79684b49c5bb79bcfff1b631a815c7fe9d14960d537
diff --git a/dev-libs/cgicc/cgicc-3.2.16.ebuild b/dev-libs/cgicc/cgicc-3.2.16.ebuild
deleted file mode 100644 (file)
index 55dbede..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools
-
-DESCRIPTION="A C++ class library for writing CGI applications"
-HOMEPAGE="https://www.gnu.org/software/cgicc/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-3 doc? ( FDL-1.2 )"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples static-libs"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )"
-
-PATCHES=(
-       "${FILESDIR}/3.2.10-fix-pkgconfig.patch"
-       "${FILESDIR}/${PN}-3.2.16-fix-doc-building.patch"
-)
-
-src_prepare() {
-       default
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               $(use_enable examples demos) \
-               $(use_enable doc) \
-               $(use_enable static-libs static)
-}
-
-src_install() {
-       default
-
-       # package provides .pc files
-       find "${D}" -name '*.la' -delete || die
-
-       if use examples; then
-               docinto examples
-               dodoc {contrib,demo}/{*.{cpp,h},*.cgi,README}
-               docompress -x /usr/share/doc/${PF}/examples
-       fi
-}
diff --git a/dev-libs/cgicc/files/3.2.10-fix-pkgconfig.patch b/dev-libs/cgicc/files/3.2.10-fix-pkgconfig.patch
deleted file mode 100644 (file)
index af1c069..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/cgicc.pc.in b/cgicc.pc.in
-index 2006be8..e42c9bf 100644
---- a/cgicc.pc.in
-+++ b/cgicc.pc.in
-@@ -7,5 +7,5 @@ Name: cgicc
- Description: GNU cgicc is an ANSI C++ compliant class library that greatly simplifies the creation of CGI applications for the World Wide Web.
- Requires: 
- Version: @VERSION@
--Libs: -L${libdir} 
--Cflags: 
-\ No newline at end of file
-+Libs: -L${libdir} -lcgicc
-+Cflags: -I${includedir}
diff --git a/dev-libs/cgicc/files/cgicc-3.2.16-fix-doc-building.patch b/dev-libs/cgicc/files/cgicc-3.2.16-fix-doc-building.patch
deleted file mode 100644 (file)
index 4430ffa..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-Fix build system properly, such that hacking the Makefile.in's
-is not required anymore.
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -77,6 +77,13 @@
- AC_MSG_RESULT($cgicc_demos)
- AM_CONDITIONAL(DEMOS, test "$cgicc_demos" = yes)
-+dnl enable/disable the docs, if specified
-+AC_ARG_ENABLE([doc],
-+    AS_HELP_STRING([--disable-doc], [Disable building documentation]))
-+AC_MSG_CHECKING([whether to build the cgicc docs])
-+AC_MSG_RESULT([$enable_doc])
-+AM_CONDITIONAL([DOCS], [test "x$enable_doc" != "xno"])
-+
- if test "$cgicc_demos" = yes; then
-   AC_CONFIG_FILES(demo/Makefile)
-   AC_CHECK_FUNCS([gethostbyaddr])
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -10,7 +10,11 @@
- ACLOCAL_AMFLAGS= 
--SUBDIRS = cgicc doc support $(DEMO)
-+SUBDIRS = cgicc support $(DEMO)
-+
-+if DOCS
-+SUBDIRS += doc
-+endif
- CLEANFILES = *~
diff --git a/dev-libs/cgicc/metadata.xml b/dev-libs/cgicc/metadata.xml
deleted file mode 100644 (file)
index c65be4a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-       <!-- maintainer-needed -->
-       <longdescription lang="en">
-               GNU cgicc is an ANSI C++ compliant class library that greatly
-               simplifies the creation of CGI applications for the World Wide
-               Web. cgicc performs the following functions:
-
-               - Parses both GET and POST form data transparently
-               - Provides string, integer, floating-point and single- and multiple-choice retrieval methods for form data
-               - Provides methods for saving and restoring CGI environments to aid in application debugging
-               - Provides full on-the-fly HTML 4.0 generation capabilities, with support for cookies
-               - Supports HTTP file upload
-               - Compatible with FastCGI
-       </longdescription>
-</pkgmetadata>
index 99d344a62888b7028648a58e9ddf6338b761285c..3d06a54cc247055e52e133d20d372dc4e4a2770a 100644 (file)
@@ -746,12 +746,6 @@ dev-libs/fampp2
 # Removal in 30 days.  Bug #694168.
 dev-libs/elfio
 
-# Michał Górny <mgorny@gentoo.org> (2019-09-12)
-# Unmaintained.  Current release is from 2014, and needs version bump.
-# No reverse dependencies.
-# Removal in 30 days.  Bug #694166.
-dev-libs/cgicc
-
 # Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.
 # Masked for removal.