summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey>1999-11-29 05:56:23 +0000
committerjoey <joey>1999-11-29 05:56:23 +0000
commit282f02ef395e268267b0bad2958ae435575f2ea3 (patch)
tree912a91ee9875f8761d4a03bc8999ff24fadc5b33
parent854f6cec48a550299aa0b7a1d3b7f199b4d3ec9a (diff)
r318: Removed old and outdated command, which is only used by 1 package today.
-rwxr-xr-xdh_installdebfiles35
-rw-r--r--dh_installdebfiles.133
2 files changed, 0 insertions, 68 deletions
diff --git a/dh_installdebfiles b/dh_installdebfiles
deleted file mode 100755
index ada82155..00000000
--- 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 f3cfeffe..00000000
--- 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 <joeyh@debian.org>