diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-08-12 15:41:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-08-12 15:41:28 +0000 |
commit | f3e9d24f1a63c9cc74abf32286ae42bf95e482fe (patch) | |
tree | 9d74c699ce4c52c55256a3c02c7ab2ccd82ea24c /net-misc/dropbear/dropbear-0.50.ebuild | |
parent | old (diff) | |
download | historical-f3e9d24f1a63c9cc74abf32286ae42bf95e482fe.tar.gz historical-f3e9d24f1a63c9cc74abf32286ae42bf95e482fe.tar.bz2 historical-f3e9d24f1a63c9cc74abf32286ae42bf95e482fe.zip |
Version bump.
Package-Manager: portage-2.1.3.4
Diffstat (limited to 'net-misc/dropbear/dropbear-0.50.ebuild')
-rw-r--r-- | net-misc/dropbear/dropbear-0.50.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/net-misc/dropbear/dropbear-0.50.ebuild b/net-misc/dropbear/dropbear-0.50.ebuild new file mode 100644 index 000000000000..be412298a280 --- /dev/null +++ b/net-misc/dropbear/dropbear-0.50.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-0.50.ebuild,v 1.1 2007/08/12 15:41:28 vapier Exp $ + +inherit eutils savedconfig + +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.gz + http://matt.ucc.asn.au/dropbear/testing/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="minimal multicall pam static zlib" + +RDEPEND="zlib? ( sys-libs/zlib ) + pam? ( sys-libs/pam )" +DEPEND="${RDEPEND}" +PROVIDE="virtual/ssh" + +set_options() { + use minimal \ + && progs="dropbear dbclient dropbearkey" \ + || progs="dropbear dbclient dropbearkey dropbearconvert scp" + use multicall && makeopts="${makeopts} MULTI=1" + use static && makeopts="${makeopts} STATIC=1" +} + +pkg_setup() { + enewgroup sshd 22 + enewuser sshd 22 -1 /var/empty sshd +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/dropbear-0.46-dbscp.patch + sed -i \ + -e '/SFTPSERVER_PATH/s:".*":"/usr/lib/misc/sftp-server":' \ + options.h + restore_config options.h +} + +src_compile() { + local myconf + # --disable-syslog? wouldn't need logger in init.d + use minimal && myconf="--disable-lastlog" + econf ${myconf} $(use_enable zlib) $(use_enable pam) || die + set_options + emake ${makeopts} PROGRAMS="${progs}" || die "make ${makeopts} failed" +} + +src_install() { + set_options + emake install DESTDIR="${D}" ${makeopts} PROGRAMS="${progs}" || die "make install failed" + 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 + if use multicall ; then + cd "${D}"/usr/bin + local x + for x in ${progs} ; do + ln -s dropbearmulti ${x} + done + rm -f dropbear + dodir /usr/sbin + dosym ../bin/dropbearmulti /usr/sbin/dropbear + cd "${S}" + fi + save_config options.h + + mv "${D}"/usr/bin/{,db}scp +} |