* Added minimysqlator

This commit is contained in:
grimmlin 2009-01-10 15:51:13 +00:00
parent e30ce43bb0
commit 1e21575945
3 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,3 @@
AUX minimysqlator 55 RMD160 f2d5e4883b8d83399f89d5ae301099deb43cab70 SHA1 3f1c9da85c3469c0d6991d403ec8ae75a65e3405 SHA256 e76619fb997a39678eb9595347ea5d4fdf120ffe718aebaab16f68a4b5eab96b
DIST mms_03.jar 374783 RMD160 d4023af7066cc632e9f82bdf6e7e3a86d41d6c1b SHA1 91f20e22323b3ebb1101321ba0eed3b5d0507794 SHA256 c89737ba576b1aab2268aa60cf09f2dd8541346c84f0bc6c9e5195a0ddae7c8a
EBUILD minimysqlator-03.ebuild 777 RMD160 a8098b68fce1c71d8e31078566a1cf065e9b49ab SHA1 1cba0f073f66ffa88302df427f4500dac7c9403d SHA256 9582d9e4e0e76b2d5627fc22c0f4352399b209667bff55b45c306c8eb7641cd1

View file

@ -0,0 +1,4 @@
#!/bin/sh
cd /opt/minimysqlator/
java -jar mms_03.jar

View file

@ -0,0 +1,33 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /root/portage/net-analyzer/sqlat/sqlat-1.1.0.ebuild,v 1.1.1.1 2006/02/27 20:03:41 grimmlin Exp $
MY_P="mms_${PV}.jar"
DESCRIPTION="Minimysqlator is a MySQL injection tools that facilitates the retrieval of DB and more"
HOMEPAGE="http://www.scrt.ch/pages/minimysqlator.html"
SRC_URI="http://www.scrt.ch/outils/mms/${MY_P}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/jre"
S="${WORKDIR}"
src_unpack() {
pwd
ls -la
echo ${A} ${DISTDIR}
cp -L "${DISTDIR}/${MY_P}" "${S}" || die
}
src_compile() {
einfo "Nothing to compile"
}
src_install () {
insinto /opt/minimysqlator/
doins "${MY_P}" || die
dosbin "${FILESDIR}/${PN}" || die
}