- (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
<pekkas@netcore.fi> - (djm) Don't need X11-askpass in RPM spec file if building without it from Pekka Savola <pekkas@netcore.fi>
This commit is contained in:
parent
ab36050118
commit
969c07e0f3
|
@ -3,7 +3,10 @@
|
||||||
- (djm) Manually fix up missed diff hunks (mainly RCS idents)
|
- (djm) Manually fix up missed diff hunks (mainly RCS idents)
|
||||||
- (djm) Remove UPGRADING document in favour of a link to the better
|
- (djm) Remove UPGRADING document in favour of a link to the better
|
||||||
maintained FAQ on www.openssh.com
|
maintained FAQ on www.openssh.com
|
||||||
|
- (djm) Fix multiple dependancy on gnome-libs from Pekka Savola
|
||||||
|
<pekkas@netcore.fi>
|
||||||
|
- (djm) Don't need X11-askpass in RPM spec file if building without it
|
||||||
|
from Pekka Savola <pekkas@netcore.fi>
|
||||||
20001105
|
20001105
|
||||||
- (bal) Sync with OpenBSD:
|
- (bal) Sync with OpenBSD:
|
||||||
- markus@cvs.openbsd.org 2000/10/31 9:31:58
|
- markus@cvs.openbsd.org 2000/10/31 9:31:58
|
||||||
|
|
|
@ -17,14 +17,16 @@ Release: 1
|
||||||
Packager: Damien Miller <djm@mindrot.org>
|
Packager: Damien Miller <djm@mindrot.org>
|
||||||
URL: http://www.openssh.com/
|
URL: http://www.openssh.com/
|
||||||
Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{oversion}.tar.gz
|
Source0: ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-%{oversion}.tar.gz
|
||||||
|
%if ! %{no_x11_askpass}
|
||||||
Source1: http://www.ntrnet.net/~jmknoble/software/x11-ssh-askpass/x11-ssh-askpass-%{aversion}.tar.gz
|
Source1: http://www.ntrnet.net/~jmknoble/software/x11-ssh-askpass/x11-ssh-askpass-%{aversion}.tar.gz
|
||||||
|
%endif
|
||||||
Copyright: BSD
|
Copyright: BSD
|
||||||
Group: Applications/Internet
|
Group: Applications/Internet
|
||||||
BuildRoot: /tmp/openssh-%{version}-buildroot
|
BuildRoot: /tmp/openssh-%{version}-buildroot
|
||||||
Obsoletes: ssh
|
Obsoletes: ssh
|
||||||
PreReq: openssl >= 0.9.5a
|
PreReq: openssl >= 0.9.5a
|
||||||
Requires: openssl >= 0.9.5a
|
Requires: openssl >= 0.9.5a
|
||||||
BuildPreReq: perl, openssl-devel, tcp_wrappers, gnome-libs-devel
|
BuildPreReq: perl, openssl-devel, tcp_wrappers
|
||||||
BuildPreReq: /bin/login, /usr/bin/rsh, /usr/include/security/pam_appl.h
|
BuildPreReq: /bin/login, /usr/bin/rsh, /usr/include/security/pam_appl.h
|
||||||
%if ! %{no_gnome_askpass}
|
%if ! %{no_gnome_askpass}
|
||||||
BuildPreReq: gnome-libs-devel
|
BuildPreReq: gnome-libs-devel
|
||||||
|
@ -128,7 +130,11 @@ This package contains the GNOME passphrase dialog.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
|
||||||
|
%if ! %{no_x11_askpass}
|
||||||
%setup -q -a 1
|
%setup -q -a 1
|
||||||
|
%else
|
||||||
|
%setup -q
|
||||||
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue