summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron W. Swenson <titanofold@gentoo.org>2018-02-09 09:32:52 -0500
committerAaron W. Swenson <titanofold@gentoo.org>2018-02-09 09:32:52 -0500
commita40b060ae499622ecea6d8cd96c0bbd7da799783 (patch)
tree682e0d357f4dfeff28c0afa2cc81c247a0381df7 /dev-db/pg_top
parentnet-firewall/shorewall: Bump to v5.1.12 (diff)
downloadgentoo-a40b060ae499622ecea6d8cd96c0bbd7da799783.tar.gz
gentoo-a40b060ae499622ecea6d8cd96c0bbd7da799783.tar.bz2
gentoo-a40b060ae499622ecea6d8cd96c0bbd7da799783.zip
dev-db/pg_top: Remove outdated
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-db/pg_top')
-rw-r--r--dev-db/pg_top/Manifest1
-rw-r--r--dev-db/pg_top/files/pg_top-3.6.2.patch29
-rw-r--r--dev-db/pg_top/pg_top-3.6.2-r1.ebuild30
3 files changed, 0 insertions, 60 deletions
diff --git a/dev-db/pg_top/Manifest b/dev-db/pg_top/Manifest
index 90c12adeda2a..f72bfcdce728 100644
--- a/dev-db/pg_top/Manifest
+++ b/dev-db/pg_top/Manifest
@@ -1,2 +1 @@
-DIST pg_top-3.6.2.tar.bz2 220985 BLAKE2B 93676f5e35b0048e4bcaee6385e7f6d291ca8b3740f7226715acf254fcc24bd4cc921a078f679e22e599e22f79fc3e2de5b971c918b6bc7e6eff2fd6e7a72df2 SHA512 0e7f33cccd7a1debce4965a11ff3d5d6868aace53651ca1c486f061728034f0ab3901ddfbded022c9297d3393eaea32585ca779334954c87fd0c13c8fa523074
DIST pg_top-3.7.0.tar.bz2 236076 BLAKE2B 87a29d0237aad48b683c17ba56fdbc4a90f854f4f497057ffc978be1797d978f02694781e83d296fca82e03c8bc737f7cfd74e996987eea0bd8d6a66ae433ce0 SHA512 509cd3ce65a9b549097eaab5ae27106fa469cdeb4f37950564654f3df01390e1a771c8fa4f5858c3e4c1e76470b6c0fd9b07e8268564f59285e30bf824d7c4ec
diff --git a/dev-db/pg_top/files/pg_top-3.6.2.patch b/dev-db/pg_top/files/pg_top-3.6.2.patch
deleted file mode 100644
index 03ef912ed2b8..000000000000
--- a/dev-db/pg_top/files/pg_top-3.6.2.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- configure.ac.orig 2013-09-20 10:11:20.256444684 +0400
-+++ configure.ac 2013-09-20 10:16:30.262459612 +0400
-@@ -90,7 +90,7 @@
-
- DBCFLAGS="-I$INCLUDEDIR"
- LIBDIR=`$PG_CONFIG --libdir`
--DBLDFLAGS="-L$LIBDIR -lpq"
-+DBLDFLAGS="-L$LIBDIR"
-
- AC_SUBST(DBCFLAGS)
- AC_SUBST(DBLDFLAGS)
-@@ -109,6 +109,8 @@
- AC_SEARCH_LIBS(inet_aton, resolv, AC_DEFINE(HAVE_INET_ATON, 1,
- [inet_aton is already defined]))
-
-+AC_SEARCH_LIBS(PQexec, pq)
-+
- # check for libraries required by extension
- extlibs=""
- if test -n "$with_ext" -a -f "${srcdir}/ext/$with_ext.libs"; then
-@@ -216,8 +218,6 @@
- AC_SUBST(SRC)
- AC_SUBST(OBJ)
-
--CFLAGS="-Wall -g"
--
- AC_MSG_CHECKING(for installation settings)
- # calculate appropriate settings
- OWNER=""
diff --git a/dev-db/pg_top/pg_top-3.6.2-r1.ebuild b/dev-db/pg_top/pg_top-3.6.2-r1.ebuild
deleted file mode 100644
index ed4375a4571f..000000000000
--- a/dev-db/pg_top/pg_top-3.6.2-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-AUTOTOOLS_AUTORECONF=1
-inherit autotools-utils eutils
-
-DESCRIPTION="'top' for PostgreSQL"
-HOMEPAGE="http://ptop.projects.postgresql.org/"
-SRC_URI="http://pgfoundry.org/frs/download.php/1780/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND="dev-db/postgresql"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( FAQ HISTORY README TODO Y2K )
-PATCHES=( "${FILESDIR}/${P}.patch" )
-
-src_configure() {
- local myeconfargs=(
- $(use_enable debug)
- )
- autotools-utils_src_configure
-}