remove dev-util/scanmem, cause it is already bumped in main tree

This commit is contained in:
Sergey Popov 2012-09-21 10:25:05 +04:00
parent 7a81681311
commit a7f4ba1a84
3 changed files with 0 additions and 49 deletions

View File

@ -1,3 +0,0 @@
DIST scanmem-0.12.tar.gz 238629 RMD160 bc048105c0f3907b57d5332c2227dccc8381f5f5 SHA1 19584c593fb5c32e8805e0037774918b5236aa1e SHA256 ffaea579ef7db3dc03e1292660d5813df2efdf479424eeccbbd1b94d32fbe7a3
EBUILD scanmem-0.12.ebuild 928 RMD160 206c152f555f44bd8ad5acb303bf20fc8498a2b8 SHA1 e1d472e10af9b22c82ad8ae5f758df3ea2d1c416 SHA256 49f050e4dc4e853b92f45c7b9895185cca97d9c0079438d0eab53e99594b15b4
MISC metadata.xml 226 RMD160 f81cd87834bfc318838e7b6a63bac8a4a93387e3 SHA1 269905543b03d1b07f3d8b466a99f173d8c079b3 SHA256 aaf2cb5b3a915c802419cfdb83b0fab1befb2e4fb28843abb9ec705a803334a7

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<longdescription>Locate and modify variables in executing processes</longdescription>
</pkgmetadata>

View File

@ -1,40 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools
DESCRIPTION="Locate and modify variables in executing processes (now with GameConqueror GUI)"
HOMEPAGE="http://code.google.com/p/scanmem/"
SRC_URI="http://scanmem.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="kde gnome"
DEPEND="sys-libs/readline"
RDEPEND="${DEPEND}
kde? ( kde-base/kdesu )
gnome? ( x11-libs/gksu )"
src_prepare() {
sed -i -e "/CFLAGS/d" Makefile.am || die
eautoreconf
}
src_configure() {
econf \
--docdir=/usr/share/doc/${P} \
$(use_enable kde gui)
$(use_enable gnome gui)
}
src_install() {
dobin scanmem
doman scanmem.1
dodoc NEWS ChangeLog
use kde && sed -i 's/gksu -k --description "GameConqueror"/kdesu -c/' gui/gameconqueror
use kde || use gnome && (cd "${S}/gui" && emake DESTDIR="${D}" install)
}