#!/usr/bin/make -f # Uncomment this to turn on verbose mode. # export DH_VERBOSE=1 # This is the debhelper compatibility version to use. export DH_COMPAT=2 # This has to be exported to make some magic below work. export DH_OPTIONS ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) OPTFLAGS := -O2 else OPTFLAGS := -O0 endif VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2 | sed 's/.*://') DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH) CLIENT_UDEB := openssh-client-udeb_$(VERSION)_$(DEB_HOST_ARCH).udeb SERVER_UDEB := openssh-server-udeb_$(VERSION)_$(DEB_HOST_ARCH).udeb ifeq (,$(wildcard /usr/bin/po2debconf)) PO2DEBCONF := no MINDEBCONFVER := 0.5 else PO2DEBCONF := yes MINDEBCONFVER := 1.2.0 endif # We need a new libpam-runtime for sane PAM handling # (http://lists.debian.org/debian-devel-announce-0308/msg00012.html). # Unfortunately it's hard to detect during the build whether this is # appropriate, so woody-compatibility is a pain. I've had to punt and go for # a DEB_BUILD_SSH_WOODY environment variable. We can remove this hack once # we no longer care about woody. ifeq ($(DEB_BUILD_SSH_WOODY),) PAMSUBST := no PAMDEP := libpam-runtime (>= 0.76-14) else PAMSUBST := yes PAMDEP := libpam-runtime endif # Temporary linkage hack for amd64 due to lack of res_query weak alias, see # #242462. Real fix sent upstream. ifeq ($(DEB_HOST_ARCH),amd64) FORCE_LIBS = LIBS=-lresolv endif # Change the version string to include the Debian version SSH_VERSION := $(shell sed -e '/define/!d; s/.*\"\(.*\)\".*/\1/; q' = # 4.1.16) depends on it), the binary-arch target will generate a # better version for sarge. echo 1 > debian/po/output po2debconf debian/openssh-client.templates.master > debian/openssh-client.templates po2debconf debian/openssh-server.templates.master > debian/openssh-server.templates rm -f debian/po/output endif ifeq ($(PAMSUBST),yes) if [ -f debian/ssh.pam.new-style ]; then \ mv debian/ssh.pam.new-style debian/ssh.pam; \ fi endif rm -f debian/ssh-askpass-gnome.png dh_clean install: DH_OPTIONS=-a install: build dh_testdir dh_testroot dh_clean -k dh_installdirs $(MAKE) -C build-deb DESTDIR=`pwd`/debian/openssh-client install-nokeys rm -f debian/openssh-client/etc/ssh/sshd_config #Temporary hack: remove /usr/share/Ssh.bin, since we have no smartcard support anyway. rm -f debian/openssh-client/usr/share/Ssh.bin # Split off the server. mv debian/openssh-client/usr/sbin/sshd debian/openssh-server/usr/sbin/ mv debian/openssh-client/usr/lib/sftp-server debian/openssh-server/usr/lib/ mv debian/openssh-client/usr/share/man/man8/sshd.8 debian/openssh-server/usr/share/man/man8/ mv debian/openssh-client/usr/share/man/man8/sftp-server.8 debian/openssh-server/usr/share/man/man8/ rmdir debian/openssh-client/var/run/sshd install -m 755 contrib/ssh-copy-id debian/openssh-client/usr/bin/ssh-copy-id install -m 644 -c contrib/ssh-copy-id.1 debian/openssh-client/usr/share/man/man1/ssh-copy-id.1 install -m 644 debian/moduli.5 debian/openssh-client/usr/share/man/man5/moduli.5 if [ -f contrib/gnome-ssh-askpass2 ]; then \ install -s -o root -g root -m 755 contrib/gnome-ssh-askpass2 debian/ssh-askpass-gnome/usr/lib/ssh/gnome-ssh-askpass; \ elif [ -f contrib/gnome-ssh-askpass1 ]; then \ install -s -o root -g root -m 755 contrib/gnome-ssh-askpass1 debian/ssh-askpass-gnome/usr/lib/ssh/gnome-ssh-askpass; \ fi install -m 644 debian/gnome-ssh-askpass.1 debian/ssh-askpass-gnome/usr/share/man/man1/gnome-ssh-askpass.1 uudecode -o debian/ssh-askpass-gnome/usr/share/pixmaps/ssh-askpass-gnome.png debian/ssh-askpass-gnome.png.uue install -m 755 debian/ssh-argv0 debian/openssh-client/usr/bin/ssh-argv0 install -m 644 debian/ssh-argv0.1 debian/openssh-client/usr/share/man/man1/ssh-argv0.1 install -o root -g root debian/openssh-server.init debian/openssh-server/etc/init.d/ssh install -o root -g root -m 644 debian/openssh-server.default debian/openssh-server/etc/default/ssh install -m 755 build-udeb/ssh debian/openssh-client-udeb/usr/bin/ssh install -m 755 build-udeb/scp debian/openssh-client-udeb/usr/bin/scp install -m 755 build-udeb/sftp debian/openssh-client-udeb/usr/bin/sftp install -m 755 build-udeb/sshd debian/openssh-server-udeb/usr/sbin/sshd install -m 755 build-udeb/ssh-keygen debian/openssh-server-udeb/usr/bin/ssh-keygen # Build architecture-independent files here. binary-indep: build install # nothing to do # Build architecture-dependent files here. binary-arch: binary-openssh-client binary-openssh-server binary-ssh binary-arch: binary-ssh-askpass-gnome binary-arch: binary-openssh-client-udeb binary-openssh-server-udeb binary-openssh-client: DH_OPTIONS=-popenssh-client binary-openssh-client: build install dh_testdir dh_testroot ifeq ($(PO2DEBCONF),yes) po2debconf -e utf8 debian/openssh-client.templates.master > debian/openssh-client.templates endif dh_installdebconf dh_installdocs OVERVIEW README cat debian/copyright.head LICENCE > debian/openssh-client/usr/share/doc/openssh-client/copyright dh_installchangelogs ChangeLog dh_strip dh_compress dh_fixperms dh_installdeb test ! -e debian/ssh/etc/ssh/ssh_prng_cmds \ || echo "/etc/ssh/ssh_prng_cmds" >> debian/openssh-client/DEBIAN/conffiles dh_shlibdeps dh_gencontrol -- -V'debconf-depends=debconf (>= $(MINDEBCONFVER))' dh_md5sums dh_builddeb binary-openssh-server: DH_OPTIONS=-popenssh-server binary-openssh-server: build install dh_testdir dh_testroot ifeq ($(PO2DEBCONF),yes) po2debconf -e utf8 debian/openssh-server.templates.master > debian/openssh-server.templates endif dh_installdebconf dh_installdocs OVERVIEW README cat debian/copyright.head LICENCE > debian/openssh-server/usr/share/doc/openssh-server/copyright ifeq ($(PAMSUBST),yes) # Clean up if we've done this already, to ensure idempotency. if [ -f debian/openssh-server.ssh.pam.new-style ]; then \ mv debian/openssh-server.ssh.pam.new-style debian/openssh-server.ssh.pam; \ fi cp -a debian/openssh-server.ssh.pam debian/openssh-server.ssh.pam.new-style sed -e "s/@include common-auth/auth required pam_unix.so/" \ -e "s/@include common-account/account required pam_unix.so/" \ -e "s/@include common-session/session required pam_unix.so/" \ -e "s/@include common-password/password required pam_unix.so/" \ debian/openssh-server.ssh.pam.new-style > debian/openssh-server.ssh.pam endif dh_installpam --name ssh # TODO: breaks woody backports dh_installchangelogs ChangeLog dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol -- -V'debconf-depends=debconf (>= $(MINDEBCONFVER))' \ -V'pam-depends=$(PAMDEP)' dh_md5sums dh_builddeb binary-ssh: DH_OPTIONS=-pssh binary-ssh: build install dh_testdir dh_testroot dh_installdocs cat debian/copyright.head LICENCE > debian/ssh/usr/share/doc/ssh/copyright dh_installchangelogs dh_compress dh_fixperms dh_installdeb dh_gencontrol dh_md5sums dh_builddeb binary-ssh-askpass-gnome: DH_OPTIONS=-pssh-askpass-gnome binary-ssh-askpass-gnome: build install dh_testdir dh_testroot dh_installdocs dh_installexamples debian/ssh-askpass-gnome.desktop dh_installchangelogs ChangeLog dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-openssh-client-udeb: DH_OPTIONS=-popenssh-client-udeb binary-openssh-client-udeb: build install dh_testdir dh_testroot dh_strip dh_compress dh_fixperms dh_installdeb install -p -o root -g root -m 755 debian/openssh-client-udeb.isinstallable debian/openssh-client-udeb/DEBIAN/isinstallable dh_shlibdeps dh_gencontrol -- -fdebian/files~ dpkg-distaddfile $(CLIENT_UDEB) debian-installer optional dh_builddeb --filename=$(CLIENT_UDEB) binary-openssh-server-udeb: DH_OPTIONS=-popenssh-server-udeb binary-openssh-server-udeb: build install dh_testdir dh_testroot dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol -- -fdebian/files~ dpkg-distaddfile $(SERVER_UDEB) debian-installer optional dh_builddeb --filename=$(SERVER_UDEB) binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install .PHONY: build-deb build-udeb .PHONY: binary-openssh-client binary-openssh-server binary-ssh .PHONY: binary-ssh-askpass-gnome .PHONY: binary-openssh-client-udeb binary-openssh-server-udeb