]> git.donarmstrong.com Git - debhelper.git/commitdiff
r318: Removed old and outdated command, which is only used by 1 package today.
authorjoey <joey>
Mon, 29 Nov 1999 05:56:23 +0000 (05:56 +0000)
committerjoey <joey>
Mon, 29 Nov 1999 05:56:23 +0000 (05:56 +0000)
dh_installdebfiles [deleted file]
dh_installdebfiles.1 [deleted file]

diff --git a/dh_installdebfiles b/dh_installdebfiles
deleted file mode 100755 (executable)
index ada8215..0000000
+++ /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 (file)
index f3cfeff..0000000
+++ /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 <joeyh@debian.org>