summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/scanmem')
-rw-r--r--dev-util/scanmem/Manifest1
-rw-r--r--dev-util/scanmem/scanmem-0.15.3.ebuild52
2 files changed, 0 insertions, 53 deletions
diff --git a/dev-util/scanmem/Manifest b/dev-util/scanmem/Manifest
index e350a0e06c95..ae50e589dbdc 100644
--- a/dev-util/scanmem/Manifest
+++ b/dev-util/scanmem/Manifest
@@ -1,2 +1 @@
-DIST scanmem-0.15.3.tar.gz 243150 BLAKE2B d9a218815163da31c191884268698ea8f4e12521c9f512deb850327fef44b0590d977906b4e4d48b8f15b5958523951a90fae2ace1c3a9db3f677249c706ced5 SHA512 7f14e8a129321d7e58651d7e98ab71e58926465c98d256226ef7803fa7e42ba8bbe0879da8173ad2659deb655c73338db27d832a264b429f740331aee1f6d4b7
DIST scanmem-0.16.1.tar.gz 202133 BLAKE2B bb07234aaf1f93dba5f7feb0af0efcdadb7cd7cabfce2d62f19da01ba947cf9f4ba91024db2379e218b91953679a77080a4fa711ceaca659ac7b3f01645e3f93 SHA512 5e0a97e020a8a392aed75e2654cc6bcfad68590b9caab43444e57c3180be45ce1269f5acb02355bee57ff8bb5b9349b4f65e0fe96655206a812ea645796b153b
diff --git a/dev-util/scanmem/scanmem-0.15.3.ebuild b/dev-util/scanmem/scanmem-0.15.3.ebuild
deleted file mode 100644
index 036313e7dd56..000000000000
--- a/dev-util/scanmem/scanmem-0.15.3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit autotools eutils python-single-r1
-
-DESCRIPTION="Locate and modify variables in executing processes"
-HOMEPAGE="https://github.com/scanmem/scanmem"
-SRC_URI="https://github.com/scanmem/scanmem/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gui"
-
-DEPEND="sys-libs/readline:="
-RDEPEND="${DEPEND}
- gui? (
- ${PYTHON_DEPS}
- dev-python/pygobject:3
- sys-auth/polkit
- )"
-
-REQUIRED_USE="gui? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
- use gui && python-single-r1_pkg_setup
-}
-
-src_prepare() {
- sed -i "/CFLAGS/d" Makefile.am || die
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- --docdir="/usr/share/doc/${PF}" \
- $(use_enable gui)
-}
-
-src_install() {
- default
-
- if use gui ; then
- docinto gui
- dodoc gui/{README,TODO}
- python_fix_shebang "${D}"
- fi
-}