mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-14 02:41:06 +02:00
mesua: 20180712 bump with openssl-1.1 support
This commit is contained in:
parent
dcda72f33b
commit
847bb80d9e
2 changed files with 47 additions and 1 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST medusa-2.2.tar.gz 407412 SHA256 b4c07f4d8d6e1e4b2c60d91e429ffe20d52afa80fea8c401ac548967d1fe194a SHA512 7f79f0ec95d55b04ba3b3cd94a3eaccef87b5ff6cf7ae653d970e968f60b5fb27647a98a34075ee565cf5bc067c60a6883b890729a10af247f3a5e10d7dd0d2a WHIRLPOOL 1423a28441cec38d5ff9e4def59a5599b3b2c1f2fbcb2b7cad40e4d68255f409613b241a972c1c377819e0eb483158417b025beeb8d17a6385b35fb2b88f6aea
|
||||
DIST medusa-2.2.tar.gz 407412 BLAKE2B baa619cbda1c1cb163b3fb600e5670e706b0badf6eab6ae73adbca3e998441dc6538821bd600d2c18f04ed75fded3913b1afb6cfc6405dc7b60c175c301f96cb SHA512 7f79f0ec95d55b04ba3b3cd94a3eaccef87b5ff6cf7ae653d970e968f60b5fb27647a98a34075ee565cf5bc067c60a6883b890729a10af247f3a5e10d7dd0d2a
|
||||
DIST medusa-2.2_p20180712.zip 514115 BLAKE2B 1b52a431357988c963d00f77050805cf081a0f4853418bf29d1458ed7b75add65b7742ef1e915dc206c061c732af280e5dd12d8e7db221168bb5807bfb40808f SHA512 7867af28a1f89d82cf231dc5c67533a84a3669a6d3a19c3b666d172ffbab0ddd9c271fb6c65150b29a5e7951ddba7fcc8e52a3b80f65dd56d165ea6546d4f682
|
||||
|
|
|
|||
45
net-analyzer/medusa/medusa-2.2_p20180712.ebuild
Normal file
45
net-analyzer/medusa/medusa-2.2_p20180712.ebuild
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# Copyright 1999-2018 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DESCRIPTION="A Modular,Parallel,Multiprotocol, Network Login Auditor"
|
||||
HOMEPAGE="http://www.foofus.net/jmk/medusa/medusa.html"
|
||||
COMMIT_HASH="8edc73ad77985e85ae2a40711ab7468f280d7936"
|
||||
SRC_URI="https://github.com/jmk-foofus/medusa/archive/${COMMIT_HASH}.zip -> ${P}.zip"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~x86 ~amd64"
|
||||
IUSE="afp debug ncp postgres rdp +ssh2 subversion"
|
||||
|
||||
RDEPEND="ssh2? ( net-libs/libssh2 )
|
||||
ncp? ( net-fs/ncpfs )
|
||||
postgres? ( dev-db/postgresql:= )
|
||||
rdp? ( net-misc/freerdp )
|
||||
subversion? ( dev-vcs/subversion )
|
||||
dev-libs/openssl:=
|
||||
afp? ( net-fs/afpfs-ng )"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-devel/autoconf
|
||||
sys-devel/automake"
|
||||
|
||||
S="${WORKDIR}/${PN}-${COMMIT_HASH}"
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--with-default-mod-path="/usr/lib/medusa/modules" \
|
||||
`use_enable afp module-afp` \
|
||||
`use_enable debug` \
|
||||
`use_enable ncp module-ncp` \
|
||||
`use_enable postgres module-postgres` \
|
||||
`use_enable rdp module-rdp` \
|
||||
`use_enable ssh2 module-ssh` \
|
||||
`use_enable subversion module-svn`
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" install
|
||||
dodoc README.md TODO ChangeLog
|
||||
# dohtml doc/*.html
|
||||
}
|
||||
Loading…
Reference in a new issue