commit:     b84a4aee8468a5806ec143b0c0e248080d1081d3
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 12 08:09:09 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 12 08:09:09 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84a4aee

dev-libs/cgicc: Remove last-rited pkg

Closes: https://bugs.gentoo.org/694166
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-libs/cgicc/Manifest                            |  1 -
 dev-libs/cgicc/cgicc-3.2.16.ebuild                 | 48 ----------------------
 dev-libs/cgicc/files/3.2.10-fix-pkgconfig.patch    | 13 ------
 .../files/cgicc-3.2.16-fix-doc-building.patch      | 34 ---------------
 dev-libs/cgicc/metadata.xml                        | 17 --------
 profiles/package.mask                              |  6 ---
 6 files changed, 119 deletions(-)

diff --git a/dev-libs/cgicc/Manifest b/dev-libs/cgicc/Manifest
deleted file mode 100644
index 3c619603cec..00000000000
--- a/dev-libs/cgicc/Manifest
+++ /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
index 55dbede7198..00000000000
--- a/dev-libs/cgicc/cgicc-3.2.16.ebuild
+++ /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
index af1c069334e..00000000000
--- a/dev-libs/cgicc/files/3.2.10-fix-pkgconfig.patch
+++ /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
index 4430ffafaf9..00000000000
--- a/dev-libs/cgicc/files/cgicc-3.2.16-fix-doc-building.patch
+++ /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
index c65be4a9641..00000000000
--- a/dev-libs/cgicc/metadata.xml
+++ /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>

diff --git a/profiles/package.mask b/profiles/package.mask
index 99d344a6288..3d06a54cc24 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -746,12 +746,6 @@ dev-libs/fampp2
 # Removal in 30 days.  Bug #694168.
 dev-libs/elfio
 
-# Michał Górny <[email protected]> (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 <[email protected]> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.
 # Masked for removal.

Reply via email to