The unified diff between revisions [826db75f..] and [a4cab2b4..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'debian/rules'

#
#
# patch "debian/rules"
#  from [58521b19dfa543e95e1c580e894b09df24cc514b]
#    to [53602f3c8cbda45fb8a451da2d3949ea5043f352]
#
============================================================
--- debian/rules	58521b19dfa543e95e1c580e894b09df24cc514b
+++ debian/rules	53602f3c8cbda45fb8a451da2d3949ea5043f352
@@ -23,7 +23,7 @@ endif
   CC =diet -v -Os gcc -nostdinc
 endif

-DIR =$(shell pwd)/debian/dropbear
+DIR =$(shell pwd)/debian/cokedropbear

 patch: deb-checkdir patch-stamp
 patch-stamp:
@@ -35,7 +35,7 @@ config.status: patch-stamp configure
 config.status: patch-stamp configure
 	CC='$(CC)' \
 	CFLAGS='$(CFLAGS)'' -DSFTPSERVER_PATH="\"/usr/lib/sftp-server\""' \
-	  ./configure --host='$(DEB_HOST_GNU_TYPE)' \
+	  ./configure --host='$(DEB_HOST_GNU_TYPE)' --enable-pam\
 	    --build='$(DEB_BUILD_GNU_TYPE)' --prefix=/usr \
 	    --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info \
 	    $(CONFFLAGS)
@@ -60,44 +60,21 @@ install: deb-checkdir deb-checkuid build
 	install -d -m0755 '$(DIR)'/etc/dropbear
 	# programs
 	install -d -m0755 '$(DIR)'/usr/sbin
-	install -m0755 dropbear '$(DIR)'/usr/sbin/dropbear
-	install -d -m0755 '$(DIR)'/usr/bin
-	install -m0755 dbclient '$(DIR)'/usr/bin/dbclient
-	install -m0755 dropbearkey '$(DIR)'/usr/bin/dropbearkey
-	install -d -m0755 '$(DIR)'/usr/lib/dropbear
-	install -m0755 dropbearconvert \
-	  '$(DIR)'/usr/lib/dropbear/dropbearconvert
-	$(STRIP) -R .comment -R .note '$(DIR)'/usr/sbin/* \
-	  '$(DIR)'/usr/bin/* '$(DIR)'/usr/lib/dropbear/*
+	install -m0755 cokedropbear '$(DIR)'/usr/sbin/cokedropbear
+	$(STRIP) -R .comment -R .note '$(DIR)'/usr/sbin/*
 	# init and run scripts
 	install -d -m0755 '$(DIR)'/etc/init.d
-	install -m0755 debian/dropbear.init '$(DIR)'/etc/init.d/dropbear
-	install -m0755 debian/service/run '$(DIR)'/etc/dropbear/run
-	install -d -m0755 '$(DIR)'/etc/dropbear/log
-	install -m0755 debian/service/log '$(DIR)'/etc/dropbear/log/run
-	ln -s /var/log/dropbear '$(DIR)'/etc/dropbear/log/main
-	ln -s /var/run/dropbear '$(DIR)'/etc/dropbear/supervise
-	ln -s /var/run/dropbear.log '$(DIR)'/etc/dropbear/log/supervise
-	# man pages
-	install -d -m0755 '$(DIR)'/usr/share/man/man8
-	for i in dropbear.8 dropbearkey.8; do \
-	  install -m644 $$i '$(DIR)'/usr/share/man/man8/ || exit 1; \
-	done
-	gzip -9 '$(DIR)'/usr/share/man/man8/*.8
-	install -d -m0755 '$(DIR)'/usr/share/man/man1
-	install -m644 dbclient.1 '$(DIR)'/usr/share/man/man1/
-	gzip -9 '$(DIR)'/usr/share/man/man1/*.1
+	install -m0755 debian/dropbear.init '$(DIR)'/etc/init.d/cokedropbear
 	# copyright, changelog
 	cat debian/copyright.in LICENSE >debian/copyright
 	test -r changelog || ln -s CHANGES changelog

 binary-indep:

-binary-arch: install dropbear.deb
+binary-arch: install cokedropbear.deb
 	test '$(CC)' != 'gcc' || \
-	  dpkg-shlibdeps '$(DIR)'/usr/sbin/* '$(DIR)'/usr/bin/* \
-	    '$(DIR)'/usr/lib/dropbear/*
-	dpkg-gencontrol -isp -pdropbear -P'$(DIR)'
+	  dpkg-shlibdeps '$(DIR)'/usr/sbin/*
+	dpkg-gencontrol -isp -pcokedropbear -P'$(DIR)'
 	dpkg -b '$(DIR)' ..

 binary: binary-arch binary-indep