57 lines
1.3 KiB
Bash
57 lines
1.3 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-9999.ebuild,v 1.4 2012/04/19 09:10:13 xmw Exp $
|
|
|
|
EAPI=4
|
|
EGIT_REPO_URI="https://github.com/keithw/mosh.git"
|
|
|
|
inherit autotools git-2 toolchain-funcs
|
|
|
|
DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
|
|
HOMEPAGE="http://mosh.mit.edu"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
IUSE="+client examples +server +utempter"
|
|
REQUIRED_USE="|| ( client server )
|
|
examples? ( client )"
|
|
|
|
RDEPEND="dev-libs/protobuf
|
|
dev-libs/skalibs
|
|
sys-libs/ncurses:5
|
|
virtual/ssh
|
|
client? ( dev-lang/perl
|
|
dev-perl/IO-Tty )
|
|
utempter? ( sys-libs/libutempter )"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/pkgconfig"
|
|
|
|
src_prepare() {
|
|
einfo remove bundled skalibs
|
|
rm -r third || die
|
|
sed -e '/third/d' -i configure.ac
|
|
sed -e '/^SUBDIRS/s: third : :' -i Makefile.am
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--with-skalibs=/ \
|
|
--with-skalibs-include=/usr/include/skalibs \
|
|
--with-skalibs-libdir=/usr/$(get_libdir)/skalibs \
|
|
$(use_enable client) \
|
|
$(use_enable server) \
|
|
$(use_enable examples) \
|
|
$(use_with utempter)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
for myprog in $(find src/examples -type f -perm /0111) ; do
|
|
newbin ${myprog} ${PN}-$(basename ${myprog})
|
|
elog "${myprog} installed as ${PN}-$(basename ${myprog})"
|
|
done
|
|
}
|