monsieurp    15/07/31 07:59:15

  Modified:             ChangeLog
  Added:                mosh-1.2.5-r1.ebuild
  Log:
  EAPI 5 bump.
  
  Signed-off-by: Patrice Clement <monsie...@gentoo.org>
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
93491BB8)

Revision  Changes    Path
1.52                 net-misc/mosh/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.52&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?rev=1.52&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog   26 Jul 2015 18:16:50 -0000      1.51
+++ ChangeLog   31 Jul 2015 07:59:15 -0000      1.52
@@ -1,6 +1,11 @@
 # ChangeLog for net-misc/mosh
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.51 2015/07/26 
18:16:50 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/ChangeLog,v 1.52 2015/07/31 
07:59:15 monsieurp Exp $
+
+*mosh-1.2.5-r1 (31 Jul 2015)
+
+  31 Jul 2015; Patrice Clement <monsie...@gentoo.org> +mosh-1.2.5-r1.ebuild:
+  EAPI 5 bump.
 
 *mosh-1.2.5 (26 Jul 2015)
 



1.1                  net-misc/mosh/mosh-1.2.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.5-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/mosh/mosh-1.2.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: mosh-1.2.5-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/mosh/mosh-1.2.5-r1.ebuild,v 1.1 
2015/07/31 07:59:15 monsieurp Exp $

EAPI=5

inherit autotools bash-completion-r1 eutils vcs-snapshot

DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
HOMEPAGE="http://mosh.mit.edu";
SRC_URI="http://mosh.mit.edu/${P}.tar.gz";

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux 
~x64-macos"
IUSE="+client examples +mosh-hardening +server ufw +utempter"

REQUIRED_USE="|| ( client server )
        examples? ( client )"

RDEPEND="dev-libs/protobuf
        sys-libs/ncurses:5
        virtual/ssh
        client? (
                dev-lang/perl
                dev-perl/IO-Tty
        )
        utempter? (
                sys-libs/libutempter
        )"

DEPEND="${RDEPEND}
        virtual/pkgconfig"

# [0] - avoid sandbox-violation calling git describe in Makefile
PATCHES=(
        "${FILESDIR}"/${P}-git-version.patch
)

src_prepare() {
        # apply patches.
        epatch ${PATCHES[@]}

        eautoreconf
}

src_configure() {
        econf \
                --disable-completion \
                $(use_enable client) \
                $(use_enable server) \
                $(use_enable examples) \
                $(use_enable ufw) \
                $(use_enable mosh-hardening hardening) \
                $(use_with utempter)
}

src_compile() {
        emake V=1
}

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

        # bug 477384
        dobashcomp conf/bash-completion/completions/mosh
}




Reply via email to