diff options
author | Pacho Ramos <pacho@gentoo.org> | 2019-01-27 16:15:05 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2019-01-27 17:52:57 +0100 |
commit | 62da2b68a934dc6f39023bf3937f456ff7fb5579 (patch) | |
tree | 40f48969c8376361161e5b482cd41be734e91e83 /dev-util/scanmem | |
parent | app-emulation/wine-mono: Sync with ::wine (diff) | |
download | gentoo-62da2b68a934dc6f39023bf3937f456ff7fb5579.tar.gz gentoo-62da2b68a934dc6f39023bf3937f456ff7fb5579.tar.bz2 gentoo-62da2b68a934dc6f39023bf3937f456ff7fb5579.zip |
dev-util/scanmem: Drop old
Package-Manager: Portage-2.3.58, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-util/scanmem')
-rw-r--r-- | dev-util/scanmem/Manifest | 1 | ||||
-rw-r--r-- | dev-util/scanmem/scanmem-0.15.3.ebuild | 52 |
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 -} |