net-misc/shmux: add 1.0.3

Signed-off-by: Alice Ferrazzi <alicef@gentoo.org>
This commit is contained in:
Alice Ferrazzi
2022-07-25 01:33:09 +09:00
parent 8518ae7bb2
commit 2f7b74b1f5
3 changed files with 55 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST shmux-1.0.2.tgz 110473 BLAKE2B 7dcd08c37d0d8d3ee2dfccc89ee9f2c187c97278ba7adfa8e30bd5b86981d3a4b3513dfc884926000cede0b813a922e121c49db75ca4e0ff4efde2b4b9e6480b SHA512 d114678827d4fc203f0d18b4a4e02f8b56efdf490df0aef32756a020c755b387468a88fea7266249445a862d7ed9374640432e5807fa57bca5a7d559d7e67a8a
DIST shmux-1.0.3.tgz 116613 BLAKE2B 3d46edf3633e7d91a7fdb65e578c4541b2de35c885f1f449bdf347d3e3107ae014e6771e54b11f996a2783b303950f6ca66b46c3ef98586b932dc2fe4cb2f9ed SHA512 fb1dbb9701913fb97fb82914b9ae277703aec48cafdf74bcaa4a194ba242b62aff34e004507d6931475f320f89d62ed465360c0bc5cf2ff45abe7482b3127197

View File

@@ -0,0 +1,11 @@
--- a/configure.ac 2022-07-25 01:23:55.820951949 +0900
+++ b/configure.ac 2022-07-25 01:24:07.870920125 +0900
@@ -28,7 +28,7 @@ if test "x$with_pcre" != "xno"; then
fi
# Checks for libraries.
-AC_SEARCH_LIBS([tgetent], [termcap curses ncurses], , AC_MSG_ERROR([terminal handling library missing]))
+AC_SEARCH_LIBS([tgetent], [termcap tinfo curses ncurses], , AC_MSG_ERROR([terminal handling library missing]))
AC_SEARCH_LIBS([basename], [gen])
if test "x$with_pcre" != "xno"; then
AC_SEARCH_LIBS([pcre_compile], [pcre], ,

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="run the same command across many hosts in parallel"
HOMEPAGE="http://web.taranis.org/shmux/"
SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
LICENSE="shmux"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="pcre"
RESTRICT="test"
RDEPEND="
pcre? ( dev-libs/libpcre )
sys-libs/ncurses:0=
"
DEPEND="
${RDEPEND}
virtual/awk"
PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
DOCS=( CHANGES )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf $(use_with pcre)
}
src_install() {
emake DESTDIR="${D}" install
einstalldocs
}