From: joey Date: Mon, 29 Nov 1999 05:56:23 +0000 (+0000) Subject: r318: Removed old and outdated command, which is only used by 1 package today. X-Git-Tag: version_2.0.101~280 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=282f02ef395e268267b0bad2958ae435575f2ea3;p=debhelper.git r318: Removed old and outdated command, which is only used by 1 package today. --- diff --git a/dh_installdebfiles b/dh_installdebfiles deleted file mode 100755 index ada8215..0000000 --- a/dh_installdebfiles +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -e -# -# Install files from debian/ into the package's DEBIAN directory. -# Also generates the control file. - -PATH=debian:$PATH:/usr/lib/debhelper -source dh_lib - -if [ ! -d debian/tmp/DEBIAN ]; then - doit "install -d debian/tmp/DEBIAN" -fi - -# Install executable files. -for file in postinst preinst prerm postrm; do - if [ -f debian/$file ]; then - doit "install -p debian/$file debian/tmp/DEBIAN" - fi -done - -# Install non-executable files -for file in shlibs conffiles; do - if [ -f debian/$file ]; then - doit "install -m 644 -p debian/$file debian/tmp/DEBIAN" - fi -done - -# Run dpkg-shlibdeps to generate dependancies. -# This ends up running dpkg-shlibdeps on scripts, but that is no big deal. -files=`find debian/tmp -type f -perm +111 | tr "\n" " "` -if [ "$files" ]; then - doit "dpkg-shlibdeps $files" -fi - -# Generate and install control file. -doit "dpkg-gencontrol -p$PACKAGE" diff --git a/dh_installdebfiles.1 b/dh_installdebfiles.1 deleted file mode 100644 index f3cfeff..0000000 --- a/dh_installdebfiles.1 +++ /dev/null @@ -1,33 +0,0 @@ -.TH DH_INSTALLDEBFILES 1 "" "Debhelper Commands" "Debhelper Commands" -.SH NAME -dh_installdebfiles \- install files into the DEBIAN directory (deprecated) -.SH SYNOPSIS -.B dh_installdebfiles -.SH "DESCRIPTION" -dh_installdebfiles is a debhelper program that is responsible for installing -files into the DEBIAN directory in package build directories with the -correct permissions, canculating shared library dependancies, and creating a -control file. -.P -This program is deprecated. It is now merely a wrapper around three other -programs, and you may replace any calls to this program by: -.P - dh_installdeb - dh_shlibdeps - dh_gencontrol -.SH WARNING -This program will be removed at some time in the future. -.SH OPTIONS -Any options passed to this program will be sent to each of the 3 programs -listed above. -.SH "SEE ALSO" -.TP -.BR debhelper (1) -.TP -.BR dh_installdeb (1) -.TP -.BR dh_shlibdeps (1) -.TP -.BR dh_gencontrol (1) -.SH AUTHOR -Joey Hess