diff options
author | 2003-05-06 12:57:35 +0000 | |
---|---|---|
committer | 2003-05-06 12:57:35 +0000 | |
commit | f1b241e9ce942d7586eec94f5483a5871c331a18 (patch) | |
tree | 3d4547157b35c5a03fbde5636787ee9ad93531b8 /net-misc | |
parent | Version bump. (diff) | |
download | historical-f1b241e9ce942d7586eec94f5483a5871c331a18.tar.gz historical-f1b241e9ce942d7586eec94f5483a5871c331a18.tar.bz2 historical-f1b241e9ce942d7586eec94f5483a5871c331a18.zip |
Version bump.
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/scponly/Manifest | 4 | ||||
-rw-r--r-- | net-misc/scponly/files/digest-scponly-3.8 | 1 | ||||
-rw-r--r-- | net-misc/scponly/scponly-3.8.ebuild | 39 |
3 files changed, 42 insertions, 2 deletions
diff --git a/net-misc/scponly/Manifest b/net-misc/scponly/Manifest index 5feedefc6bd3..bc6d1a1abc66 100644 --- a/net-misc/scponly/Manifest +++ b/net-misc/scponly/Manifest @@ -1,5 +1,5 @@ MD5 8ab24a815028687fc0b8f3d8bb0f4f03 scponly-3.7.ebuild 931 -MD5 f0493bda71314b32c208eb54ba21ceb6 ChangeLog 399 -MD5 75fc6a7d7babd39cfbbe30bc9cc6bf99 scponly-3.8.ebuild 835 +MD5 2fbb896373bdddb0a9448e905bf6cdac ChangeLog 531 +MD5 5acb0bb00a77909fa9a5c3cd03009888 scponly-3.8.ebuild 932 MD5 7f3245890a81d9e6c8e271517fa8b3ad files/digest-scponly-3.7 59 MD5 f0dc17e8e5f9acc8a7173578e9a8b560 files/digest-scponly-3.8 59 diff --git a/net-misc/scponly/files/digest-scponly-3.8 b/net-misc/scponly/files/digest-scponly-3.8 new file mode 100644 index 000000000000..d28c6e78104f --- /dev/null +++ b/net-misc/scponly/files/digest-scponly-3.8 @@ -0,0 +1 @@ +MD5 7764ad781f1517100c380476ff104d5b scponly-3.8.tgz 70029 diff --git a/net-misc/scponly/scponly-3.8.ebuild b/net-misc/scponly/scponly-3.8.ebuild new file mode 100644 index 000000000000..98156582b2f4 --- /dev/null +++ b/net-misc/scponly/scponly-3.8.ebuild @@ -0,0 +1,39 @@ +# Copyright 2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/scponly/scponly-3.8.ebuild,v 1.1 2003/05/06 12:57:21 avenj Exp $ + +DESCRIPTION="A tiny psuedoshell which only permits scp and sftp" +SRC_URI="http://www.sublimation.org/scponly/${P}.tgz" +HOMEPAGE="http://www.sublimation.org/scponly/" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="virtual/glibc + net-misc/openssh" + +S=${WORKDIR}/${P} + +src_compile() { + + PATH="${PATH}:/usr/lib/misc" ./configure \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + || die "./configure failed" + + emake || die +} + +src_install () { + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + CONFDIR=${D}/etc/scponly \ + install || die + grep -v scponly /etc/shells > ${D}/etc/shells + echo "/usr/bin/scponly" >> ${D}/etc/shells + + dodoc AUTHOR CHANGELOG CONTRIB README TODO +} |