56 lines
1.4 KiB
Bash
56 lines
1.4 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-1.2.ebuild,v 1.3 2012/05/05 03:20:43 jdhore Exp $
|
|
|
|
EAPI=4
|
|
|
|
inherit autotools eutils toolchain-funcs
|
|
|
|
DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
|
|
HOMEPAGE="http://mosh.mit.edu"
|
|
SRC_URI="https://github.com/downloads/keithw/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
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}
|
|
virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
einfo remove bundled skalibs
|
|
rm -r third || die
|
|
epatch "${FILESDIR}"/${P}-shared-skalibs.patch
|
|
eautoreconf
|
|
epatch "${FILESDIR}"/${P}-shared-skalibs-fix-configure.patch
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--with-skalibs="${EPREFIX}"/ \
|
|
--with-skalibs-include="${EPREFIX}"/usr/include/skalibs \
|
|
--with-skalibs-libdir="${EPREFIX}"/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
|
|
}
|