net-misc/dropbear: version bump to 2016.74
authorMike Frysinger <vapier@gentoo.org>
Thu, 21 Jul 2016 16:03:51 +0000 (12:03 -0400)
committerMike Frysinger <vapier@gentoo.org>
Thu, 21 Jul 2016 16:04:55 +0000 (12:04 -0400)
net-misc/dropbear/Manifest
net-misc/dropbear/dropbear-2016.74.ebuild [new file with mode: 0644]

index 20b51ecfb3f5ed526b8e35f637e57303b78b21c1..5da95e2963f22775492e9d00ce6dab57816d6148 100644 (file)
@@ -1 +1,2 @@
 DIST dropbear-2016.73.tar.bz2 1621584 SHA256 5c61a4f69b093b688629cd365be38701485ff63cfb23642dab7a05ad250aefd7 SHA512 dc538d77b0269c93339b150990b475129a88b0bdc070021c03726955e307407f517049f55b012bf00579d26cd0ff412d88f51c1db540bcbd3d8e4b7cf882bcb8 WHIRLPOOL 9d989b4893eaae254eb69d109d93375e121cc163ada59ac75fcbf9d88b294b015168bd5942d7a6afa1ed2dc08c297402be668cdc5fbd2647d9c14b86849a233b
+DIST dropbear-2016.74.tar.bz2 1622234 SHA256 2720ea54ed009af812701bcc290a2a601d5c107d12993e5d92c0f5f81f718891 SHA512 c0f4ea7840077b8302b48e27b5b588a4babac6583740dfdb845c40f633aa3ec96174d1d2ade81d2c3e23ea99b75e906312c512d8c7580e6e4105b2dbd37e5e22 WHIRLPOOL 7feee8beda0990649c3456350aa16776de92a649f02d368bbdf925f9077db0f3d822a46d2dd5832405a112132990142119e94da26af4fde0dfb954b301a08ae3
diff --git a/net-misc/dropbear/dropbear-2016.74.ebuild b/net-misc/dropbear/dropbear-2016.74.ebuild
new file mode 100644 (file)
index 0000000..230812e
--- /dev/null
@@ -0,0 +1,98 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+
+inherit eutils savedconfig pam user
+
+DESCRIPTION="small SSH 2 client/server designed for small memory environments"
+HOMEPAGE="http://matt.ucc.asn.au/dropbear/dropbear.html"
+SRC_URI="http://matt.ucc.asn.au/dropbear/releases/${P}.tar.bz2
+       http://matt.ucc.asn.au/dropbear/testing/${P}.tar.bz2"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="bsdpty minimal multicall pam +shadow static +syslog zlib"
+
+LIB_DEPEND="zlib? ( sys-libs/zlib[static-libs(+)] )
+       dev-libs/libtommath[static-libs(+)]"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
+       pam? ( virtual/pam )"
+DEPEND="${RDEPEND}
+       static? ( ${LIB_DEPEND} )"
+RDEPEND+=" pam? ( >=sys-auth/pambase-20080219.1 )"
+
+REQUIRED_USE="pam? ( !static )"
+
+set_options() {
+       progs=(
+               dropbear dbclient dropbearkey
+               $(usex minimal "" "dropbearconvert scp")
+       )
+       makeopts=(
+               MULTI=$(usex multicall 1 0)
+               STATIC=$(usex static 1 0)
+       )
+}
+
+src_prepare() {
+       epatch "${FILESDIR}"/${PN}-0.46-dbscp.patch
+       sed -i \
+               -e '/SFTPSERVER_PATH/s:".*":"/usr/lib/misc/sftp-server":' \
+               options.h || die
+       sed -i \
+               -e '/pam_start/s:sshd:dropbear:' \
+               svr-authpam.c || die
+       restore_config options.h
+}
+
+src_configure() {
+       # XXX: Need to add libtomcrypt to the tree and re-enable this.
+       #       --disable-bundled-libtom
+       econf \
+               $(use_enable zlib) \
+               $(use_enable pam) \
+               $(use_enable !bsdpty openpty) \
+               $(use_enable shadow) \
+               $(use_enable syslog)
+}
+
+src_compile() {
+       set_options
+       emake "${makeopts[@]}" PROGRAMS="${progs[*]}"
+}
+
+src_install() {
+       set_options
+       emake "${makeopts[@]}" PROGRAMS="${progs[*]}" DESTDIR="${D}" install
+       doman *.8
+       newinitd "${FILESDIR}"/dropbear.init.d dropbear
+       newconfd "${FILESDIR}"/dropbear.conf.d dropbear
+       dodoc CHANGES README TODO SMALL MULTI
+
+       # The multi install target does not install the links right.
+       if use multicall ; then
+               cd "${ED}"/usr/bin
+               local x
+               for x in "${progs[@]}" ; do
+                       ln -sf dropbearmulti ${x} || die "ln -s dropbearmulti to ${x} failed"
+               done
+               rm -f dropbear
+               dodir /usr/sbin
+               dosym ../bin/dropbearmulti /usr/sbin/dropbear
+               cd "${S}"
+       fi
+       save_config options.h
+
+       if ! use minimal ; then
+               mv "${ED}"/usr/bin/{,db}scp || die
+       fi
+
+       pamd_mimic system-remote-login dropbear auth account password session
+}
+
+pkg_preinst() {
+       enewgroup sshd 22
+       enewuser sshd 22 -1 /var/empty sshd
+}