summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-05-14 18:19:03 +0200
committerDavid Seifert <soap@gentoo.org>2023-05-14 18:19:03 +0200
commit42b538e3b988a96d30b4832707454db057647b32 (patch)
tree4876dc088fd4bc1d6ce6ddc864bc2be9fada46fa /x11-plugins
parentpackage.mask: Last rite dev-vcs/cvsync (diff)
downloadgentoo-42b538e3b988a96d30b4832707454db057647b32.tar.gz
gentoo-42b538e3b988a96d30b4832707454db057647b32.tar.bz2
gentoo-42b538e3b988a96d30b4832707454db057647b32.zip
x11-plugins/ascpu: treeclean
Closes: https://bugs.gentoo.org/874522 Closes: https://bugs.gentoo.org/898456 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/ascpu/Manifest1
-rw-r--r--x11-plugins/ascpu/ascpu-1.11-r1.ebuild39
-rw-r--r--x11-plugins/ascpu/files/ascpu-1.11-gentoo-r1.patch46
-rw-r--r--x11-plugins/ascpu/metadata.xml5
4 files changed, 0 insertions, 91 deletions
diff --git a/x11-plugins/ascpu/Manifest b/x11-plugins/ascpu/Manifest
deleted file mode 100644
index 1167dffc60d1..000000000000
--- a/x11-plugins/ascpu/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ascpu-1.11.tar.gz 43867 BLAKE2B 208b2c35ac233a3b33a48f27c3173ba05f321b0f235e199d7165e4be3ed5b638f820685847affb12a576a3ed03e684ed99448ce6557e7e7e4416f9b1eeb1a769 SHA512 fd2b4b7f27a9b585b4454237b39f5a8e662e309274a350d55e0c6f552c3d7a9626b47b84d889fd773d3785076fac08d5a595c92f81947e601d23f1f96421eb61
diff --git a/x11-plugins/ascpu/ascpu-1.11-r1.ebuild b/x11-plugins/ascpu/ascpu-1.11-r1.ebuild
deleted file mode 100644
index 3fd3792e775f..000000000000
--- a/x11-plugins/ascpu/ascpu-1.11-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="CPU statistics monitor utility for X Windows"
-SRC_URI="http://www.tigr.net/afterstep/download/ascpu/${P}.tar.gz"
-HOMEPAGE="http://www.tigr.net/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~mips ppc ppc64 sparc x86"
-IUSE="jpeg"
-
-RDEPEND="x11-libs/libXpm
- x11-libs/libSM
- jpeg? ( virtual/jpeg:0 )"
-
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-PATCHES=( "${FILESDIR}/${P}-gentoo-r1.patch" )
-
-src_configure() {
- econf $(use_enable jpeg)
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- dodir /usr/bin
- dodir /usr/share/man/man1
- dodoc README
- default
-}
diff --git a/x11-plugins/ascpu/files/ascpu-1.11-gentoo-r1.patch b/x11-plugins/ascpu/files/ascpu-1.11-gentoo-r1.patch
deleted file mode 100644
index 868c1d53b96a..000000000000
--- a/x11-plugins/ascpu/files/ascpu-1.11-gentoo-r1.patch
+++ /dev/null
@@ -1,46 +0,0 @@
---- a/autoconf/Makefile.common.in 1999-05-06 23:35:32.000000000 +0200
-+++ b/autoconf/Makefile.common.in 2006-09-11 23:07:41.000000000 +0200
-@@ -9,11 +9,10 @@
- install: install.bin install.man
-
- install.bin: $(PROG)
-- $(STRIP) $(PROG)
-- $(INSTALL_PROGRAM) $(PROG) $(AFTER_BIN_DIR)
-+ $(INSTALL_PROGRAM) $(PROG) $(DESTDIR)$(AFTER_BIN_DIR)
-
- install.man:
-- $(INSTALL_DATA) $(PROG).man $(AFTER_MAN_DIR)/$(PROG).1x
-+ $(INSTALL_DATA) $(PROG).man $(DESTDIR)$(AFTER_MAN_DIR)/$(PROG).1x
-
- uninstall:
- $(RMF) $(AFTER_BIN_DIR)/$(PROG)
---- a/autoconf/Makefile.defines.in 1999-05-06 23:35:32.000000000 +0200
-+++ b/autoconf/Makefile.defines.in 2006-09-11 23:17:40.000000000 +0200
-@@ -2,6 +2,7 @@
- # Copyright (c) 1998, Guylhem AZNAR <guylhem@oeil.qc.ca>
- #
-
-+DESTDIR =
- CC = @CC@
- CCFLAGS = @CFLAGS@
- # -march=pentiumpro -mcpu=pentiumpro
-@@ -21,7 +22,7 @@
- LEXFLAGS =
-
- INSTALL = @INSTALL@
--INSTALL_PROGRAM = @INSTALL@ -s -m 755
-+INSTALL_PROGRAM = @INSTALL@ -m 755
- INSTALL_DATA = @INSTALL@ -m 644
-
- INCS_X = @X_CFLAGS@
---- a/autoconf/Makefile.common.in 1999-05-06 23:35:32.000000000 +0200
-+++ b/autoconf/Makefile.common.in 2013-03-18 18:13:05.550047149 +0100
-@@ -34,7 +34,7 @@
- done
-
- $(PROG): $(OBJS)
-- $(CC) $(OBJS) $(LIBRARIES) $(EXTRA_LIBRARIES) -o $(@)
-+ $(CC) $(OBJS) $(LIBRARIES) $(EXTRA_LIBRARIES) -o $(@) $(LDFLAGS)
-
- .c.o:
- $(CC) $(CCFLAGS) $(EXTRA_DEFINES) $(INCLUDES) $(EXTRA_INCLUDES) -c $*.c
diff --git a/x11-plugins/ascpu/metadata.xml b/x11-plugins/ascpu/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/x11-plugins/ascpu/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>