| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/openssh-5.9_p1-r3.ebuild,v 1.9 2012/05/05 03:20:40 jdhore Exp $
|
| 4 |
|
| 5 |
EAPI="2"
|
| 6 |
inherit eutils user flag-o-matic multilib autotools pam systemd
|
| 7 |
|
| 8 |
# Make it more portable between straight releases
|
| 9 |
# and _p? releases.
|
| 10 |
PARCH=${P/_}
|
| 11 |
|
| 12 |
HPN_PATCH="${PARCH}-hpn13v11.diff.gz"
|
| 13 |
LDAP_PATCH="${PARCH/-/-lpk-}-0.3.14.patch.gz"
|
| 14 |
X509_VER="7.0" X509_PATCH="${PARCH}+x509-${X509_VER}.diff.gz"
|
| 15 |
|
| 16 |
DESCRIPTION="Port of OpenBSD's free SSH release"
|
| 17 |
HOMEPAGE="http://www.openssh.org/"
|
| 18 |
SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
|
| 19 |
${HPN_PATCH:+hpn? ( http://www.psc.edu/networking/projects/hpn-ssh/${HPN_PATCH} mirror://gentoo/${HPN_PATCH} )}
|
| 20 |
${LDAP_PATCH:+ldap? ( mirror://gentoo/${LDAP_PATCH} )}
|
| 21 |
${X509_PATCH:+X509? ( http://roumenpetrov.info/openssh/x509-${X509_VER}/${X509_PATCH} )}
|
| 22 |
"
|
| 23 |
|
| 24 |
LICENSE="as-is"
|
| 25 |
SLOT="0"
|
| 26 |
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd"
|
| 27 |
IUSE="${HPN_PATCH:++}hpn kerberos ldap libedit pam selinux skey static tcpd X X509"
|
| 28 |
|
| 29 |
RDEPEND="pam? ( virtual/pam )
|
| 30 |
kerberos? ( virtual/krb5 )
|
| 31 |
selinux? ( >=sys-libs/libselinux-1.28 )
|
| 32 |
skey? ( >=sys-auth/skey-1.1.5-r1 )
|
| 33 |
ldap? ( net-nds/openldap )
|
| 34 |
libedit? ( dev-libs/libedit )
|
| 35 |
>=dev-libs/openssl-0.9.6d
|
| 36 |
>=sys-libs/zlib-1.2.3
|
| 37 |
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
|
| 38 |
X? ( x11-apps/xauth )
|
| 39 |
userland_GNU? ( virtual/shadow )"
|
| 40 |
DEPEND="${RDEPEND}
|
| 41 |
virtual/pkgconfig
|
| 42 |
virtual/os-headers
|
| 43 |
sys-devel/autoconf"
|
| 44 |
RDEPEND="${RDEPEND}
|
| 45 |
pam? ( >=sys-auth/pambase-20081028 )"
|
| 46 |
|
| 47 |
S=${WORKDIR}/${PARCH}
|
| 48 |
|
| 49 |
pkg_setup() {
|
| 50 |
# this sucks, but i'd rather have people unable to `emerge -u openssh`
|
| 51 |
# than not be able to log in to their server any more
|
| 52 |
maybe_fail() { [[ -z ${!2} ]] && echo ${1} ; }
|
| 53 |
local fail="
|
| 54 |
$(use X509 && maybe_fail X509 X509_PATCH)
|
| 55 |
$(use ldap && maybe_fail ldap LDAP_PATCH)
|
| 56 |
$(use hpn && maybe_fail hpn HPN_PATCH)
|
| 57 |
"
|
| 58 |
fail=$(echo ${fail})
|
| 59 |
if [[ -n ${fail} ]] ; then
|
| 60 |
eerror "Sorry, but this version does not yet support features"
|
| 61 |
eerror "that you requested: ${fail}"
|
| 62 |
eerror "Please mask ${PF} for now and check back later:"
|
| 63 |
eerror " # echo '=${CATEGORY}/${PF}' >> /etc/portage/package.mask"
|
| 64 |
die "booooo"
|
| 65 |
fi
|
| 66 |
}
|
| 67 |
|
| 68 |
src_prepare() {
|
| 69 |
sed -i \
|
| 70 |
-e '/_PATH_XAUTH/s:/usr/X11R6/bin/xauth:/usr/bin/xauth:' \
|
| 71 |
pathnames.h || die
|
| 72 |
# keep this as we need it to avoid the conflict between LPK and HPN changing
|
| 73 |
# this file.
|
| 74 |
cp version.h version.h.pristine
|
| 75 |
|
| 76 |
# don't break .ssh/authorized_keys2 for fun
|
| 77 |
sed -i '/^AuthorizedKeysFile/s:^:#:' sshd_config || die
|
| 78 |
|
| 79 |
epatch "${FILESDIR}"/${PN}-5.9_p1-sshd-gssapi-multihomed.patch #378361
|
| 80 |
if use X509 ; then
|
| 81 |
pushd .. >/dev/null
|
| 82 |
epatch "${FILESDIR}"/${PN}-5.9_p1-x509-glue.patch
|
| 83 |
popd >/dev/null
|
| 84 |
epatch "${WORKDIR}"/${X509_PATCH%.*}
|
| 85 |
epatch "${FILESDIR}"/${PN}-5.8_p1-x509-hpn-glue.patch
|
| 86 |
fi
|
| 87 |
if ! use X509 ; then
|
| 88 |
if [[ -n ${LDAP_PATCH} ]] && use ldap ; then
|
| 89 |
epatch "${WORKDIR}"/${LDAP_PATCH%.*}
|
| 90 |
#epatch "${FILESDIR}"/${PN}-5.2p1-ldap-stdargs.diff #266654 - merged
|
| 91 |
# version.h patch conflict avoidence
|
| 92 |
mv version.h version.h.lpk
|
| 93 |
cp -f version.h.pristine version.h
|
| 94 |
fi
|
| 95 |
else
|
| 96 |
use ldap && ewarn "Sorry, X509 and LDAP conflict internally, disabling LDAP"
|
| 97 |
fi
|
| 98 |
epatch "${FILESDIR}"/${PN}-4.7_p1-GSSAPI-dns.patch #165444 integrated into gsskex
|
| 99 |
if [[ -n ${HPN_PATCH} ]] && use hpn; then
|
| 100 |
epatch "${WORKDIR}"/${HPN_PATCH%.*}
|
| 101 |
epatch "${FILESDIR}"/${PN}-5.6_p1-hpn-progressmeter.patch
|
| 102 |
# version.h patch conflict avoidence
|
| 103 |
mv version.h version.h.hpn
|
| 104 |
cp -f version.h.pristine version.h
|
| 105 |
# The AES-CTR multithreaded variant is broken, and causes random hangs
|
| 106 |
# when combined background threading and control sockets. To avoid
|
| 107 |
# this, we change the internal table to use the non-multithread version
|
| 108 |
# for the meantime. Do NOT remove this in new versions. See bug #354113
|
| 109 |
# comment #6 for testcase.
|
| 110 |
# Upstream reference: http://www.psc.edu/networking/projects/hpn-ssh/
|
| 111 |
## Additionally, the MT-AES-CTR mode cipher replaces the default ST-AES-CTR mode
|
| 112 |
## cipher. Be aware that if the client process is forked using the -f command line
|
| 113 |
## option the process will hang as the parent thread gets 'divorced' from the key
|
| 114 |
## generation threads. This issue will be resolved as soon as possible
|
| 115 |
sed -i \
|
| 116 |
-e '/aes...-ctr.*SSH_CIPHER_SSH2/s,evp_aes_ctr_mt,evp_aes_128_ctr,' \
|
| 117 |
cipher.c || die
|
| 118 |
fi
|
| 119 |
|
| 120 |
sed -i "s:-lcrypto:$(pkg-config --libs openssl):" configure{,.ac} || die
|
| 121 |
|
| 122 |
# Disable PATH reset, trust what portage gives us. bug 254615
|
| 123 |
sed -i -e 's:^PATH=/:#PATH=/:' configure || die
|
| 124 |
|
| 125 |
# Now we can build a sane merged version.h
|
| 126 |
(
|
| 127 |
sed '/^#define SSH_RELEASE/d' version.h.* | sort -u
|
| 128 |
printf '#define SSH_RELEASE SSH_VERSION SSH_PORTABLE %s %s\n' \
|
| 129 |
"$([ -e version.h.hpn ] && echo SSH_HPN)" \
|
| 130 |
"$([ -e version.h.lpk ] && echo SSH_LPK)"
|
| 131 |
) > version.h
|
| 132 |
|
| 133 |
eautoreconf
|
| 134 |
}
|
| 135 |
|
| 136 |
static_use_with() {
|
| 137 |
local flag=$1
|
| 138 |
if use static && use ${flag} ; then
|
| 139 |
ewarn "Disabling '${flag}' support because of USE='static'"
|
| 140 |
# rebuild args so that we invert the first one (USE flag)
|
| 141 |
# but otherwise leave everything else working so we can
|
| 142 |
# just leverage use_with
|
| 143 |
shift
|
| 144 |
[[ -z $1 ]] && flag="${flag} ${flag}"
|
| 145 |
set -- !${flag} "$@"
|
| 146 |
fi
|
| 147 |
use_with "$@"
|
| 148 |
}
|
| 149 |
|
| 150 |
src_configure() {
|
| 151 |
addwrite /dev/ptmx
|
| 152 |
addpredict /etc/skey/skeykeys #skey configure code triggers this
|
| 153 |
|
| 154 |
use static && append-ldflags -static
|
| 155 |
|
| 156 |
econf \
|
| 157 |
--with-ldflags="${LDFLAGS}" \
|
| 158 |
--disable-strip \
|
| 159 |
--sysconfdir=/etc/ssh \
|
| 160 |
--libexecdir=/usr/$(get_libdir)/misc \
|
| 161 |
--datadir=/usr/share/openssh \
|
| 162 |
--with-privsep-path=/var/empty \
|
| 163 |
--with-privsep-user=sshd \
|
| 164 |
--with-md5-passwords \
|
| 165 |
--with-ssl-engine \
|
| 166 |
$(static_use_with pam) \
|
| 167 |
$(static_use_with kerberos kerberos5 /usr) \
|
| 168 |
${LDAP_PATCH:+$(use X509 || ( use ldap && use_with ldap ))} \
|
| 169 |
$(use_with libedit) \
|
| 170 |
$(use_with selinux) \
|
| 171 |
$(use_with skey) \
|
| 172 |
$(use_with tcpd tcp-wrappers)
|
| 173 |
}
|
| 174 |
|
| 175 |
src_install() {
|
| 176 |
emake install-nokeys DESTDIR="${D}" || die
|
| 177 |
fperms 600 /etc/ssh/sshd_config
|
| 178 |
dobin contrib/ssh-copy-id || die
|
| 179 |
newinitd "${FILESDIR}"/sshd.rc6.3 sshd
|
| 180 |
newconfd "${FILESDIR}"/sshd.confd sshd
|
| 181 |
keepdir /var/empty
|
| 182 |
|
| 183 |
# not all openssl installs support ecc, or are functional #352645
|
| 184 |
if ! grep -q '#define OPENSSL_HAS_ECC 1' config.h ; then
|
| 185 |
elog "dev-libs/openssl was built with 'bindist' - disabling ecdsa support"
|
| 186 |
dosed 's:&& gen_key ecdsa::' /etc/init.d/sshd || die
|
| 187 |
fi
|
| 188 |
|
| 189 |
newpamd "${FILESDIR}"/sshd.pam_include.2 sshd
|
| 190 |
if use pam ; then
|
| 191 |
sed -i \
|
| 192 |
-e "/^#UsePAM /s:.*:UsePAM yes:" \
|
| 193 |
-e "/^#PasswordAuthentication /s:.*:PasswordAuthentication no:" \
|
| 194 |
-e "/^#PrintMotd /s:.*:PrintMotd no:" \
|
| 195 |
-e "/^#PrintLastLog /s:.*:PrintLastLog no:" \
|
| 196 |
"${D}"/etc/ssh/sshd_config || die "sed of configuration file failed"
|
| 197 |
fi
|
| 198 |
|
| 199 |
# This instruction is from the HPN webpage,
|
| 200 |
# Used for the server logging functionality
|
| 201 |
if [[ -n ${HPN_PATCH} ]] && use hpn ; then
|
| 202 |
keepdir /var/empty/dev
|
| 203 |
fi
|
| 204 |
|
| 205 |
if use ldap ; then
|
| 206 |
insinto /etc/openldap/schema/
|
| 207 |
newins openssh-lpk_openldap.schema openssh-lpk.schema
|
| 208 |
fi
|
| 209 |
|
| 210 |
doman contrib/ssh-copy-id.1
|
| 211 |
dodoc ChangeLog CREDITS OVERVIEW README* TODO sshd_config
|
| 212 |
|
| 213 |
diropts -m 0700
|
| 214 |
dodir /etc/skel/.ssh
|
| 215 |
|
| 216 |
systemd_dounit "${FILESDIR}"/sshd.{service,socket} || die
|
| 217 |
systemd_newunit "${FILESDIR}"/sshd_at.service 'sshd@.service' || die
|
| 218 |
}
|
| 219 |
|
| 220 |
src_test() {
|
| 221 |
local t tests skipped failed passed shell
|
| 222 |
tests="interop-tests compat-tests"
|
| 223 |
skipped=""
|
| 224 |
shell=$(egetshell ${UID})
|
| 225 |
if [[ ${shell} == */nologin ]] || [[ ${shell} == */false ]] ; then
|
| 226 |
elog "Running the full OpenSSH testsuite"
|
| 227 |
elog "requires a usable shell for the 'portage'"
|
| 228 |
elog "user, so we will run a subset only."
|
| 229 |
skipped="${skipped} tests"
|
| 230 |
else
|
| 231 |
tests="${tests} tests"
|
| 232 |
fi
|
| 233 |
# It will also attempt to write to the homedir .ssh
|
| 234 |
local sshhome=${T}/homedir
|
| 235 |
mkdir -p "${sshhome}"/.ssh
|
| 236 |
for t in ${tests} ; do
|
| 237 |
# Some tests read from stdin ...
|
| 238 |
HOMEDIR="${sshhome}" \
|
| 239 |
emake -k -j1 ${t} </dev/null \
|
| 240 |
&& passed="${passed}${t} " \
|
| 241 |
|| failed="${failed}${t} "
|
| 242 |
done
|
| 243 |
einfo "Passed tests: ${passed}"
|
| 244 |
ewarn "Skipped tests: ${skipped}"
|
| 245 |
if [[ -n ${failed} ]] ; then
|
| 246 |
ewarn "Failed tests: ${failed}"
|
| 247 |
die "Some tests failed: ${failed}"
|
| 248 |
else
|
| 249 |
einfo "Failed tests: ${failed}"
|
| 250 |
return 0
|
| 251 |
fi
|
| 252 |
}
|
| 253 |
|
| 254 |
pkg_preinst() {
|
| 255 |
enewgroup sshd 22
|
| 256 |
enewuser sshd 22 -1 /var/empty sshd
|
| 257 |
}
|
| 258 |
|
| 259 |
pkg_postinst() {
|
| 260 |
elog "Starting with openssh-5.8p1, the server will default to a newer key"
|
| 261 |
elog "algorithm (ECDSA). You are encouraged to manually update your stored"
|
| 262 |
elog "keys list as servers update theirs. See ssh-keyscan(1) for more info."
|
| 263 |
echo
|
| 264 |
ewarn "Remember to merge your config files in /etc/ssh/ and then"
|
| 265 |
ewarn "reload sshd: '/etc/init.d/sshd reload'."
|
| 266 |
if use pam ; then
|
| 267 |
echo
|
| 268 |
ewarn "Please be aware users need a valid shell in /etc/passwd"
|
| 269 |
ewarn "in order to be allowed to login."
|
| 270 |
fi
|
| 271 |
# This instruction is from the HPN webpage,
|
| 272 |
# Used for the server logging functionality
|
| 273 |
if [[ -n ${HPN_PATCH} ]] && use hpn ; then
|
| 274 |
echo
|
| 275 |
einfo "For the HPN server logging patch, you must ensure that"
|
| 276 |
einfo "your syslog application also listens at /var/empty/dev/log."
|
| 277 |
fi
|
| 278 |
}
|