diff options
Diffstat (limited to 'net-misc/shmux/shmux-1.0_beta3.ebuild')
-rw-r--r-- | net-misc/shmux/shmux-1.0_beta3.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/net-misc/shmux/shmux-1.0_beta3.ebuild b/net-misc/shmux/shmux-1.0_beta3.ebuild new file mode 100644 index 000000000000..5127c365cc02 --- /dev/null +++ b/net-misc/shmux/shmux-1.0_beta3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/shmux/shmux-1.0_beta3.ebuild,v 1.1 2004/07/13 22:21:20 swegener Exp $ + +MY_P=${P/_beta/b} + +DESCRIPTION="Program for executing the same command on many hosts in parallel" +HOMEPAGE="http://web.taranis.org/shmux/" +SRC_URI="http://web.taranis.org/${PN}/dist/${MY_P}.tgz" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="pcre" + +DEPEND="pcre? ( dev-libs/libpcre )" + +S=${WORKDIR}/${MY_P} + +src_compile() { + econf $(use_with pcre) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + dobin src/shmux || die "dobin failed" + doman shmux.1 || die "doman failed" + dodoc CHANGES || die "dodoc failed" +} |