mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
26 lines
705 B
Bash
26 lines
705 B
Bash
# 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 $
|
|
|
|
inherit eutils
|
|
DESCRIPTION="A small multi-threaded tool that scans for Microsoft SQL Servers"
|
|
HOMEPAGE="http://www.cqure.net/wp/?page_id=58"
|
|
SRC_URI="http://www.cqure.net/tools/${PN}-bin-0_6.zip"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~x86"
|
|
IUSE=""
|
|
S="${WORKDIR}"
|
|
DEPEND="virtual/jre"
|
|
|
|
src_compile(){
|
|
einfo "Nothing to compile"
|
|
epatch "${FILESDIR}"/"${PN}"-path.patch
|
|
}
|
|
src_install () {
|
|
# dodir /usr/lib/"${PN}"
|
|
insinto /usr/lib/"${PN}"
|
|
doins -r bin lib
|
|
newbin mssqlscan.sh mssqlscan
|
|
}
|