blob: a5669bfce5ddfb7855fcf4b27fc3ce4cc7afacc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#!/bin/sh -e
#
# Move files out of debian/tmp, into subpackages.
PATH=debian:$PATH:/usr/lib/debhelper
. dh_lib
for PACKAGE in $DH_DOPACKAGES; do
TMP=`tmpdir $PACKAGE`
files=`pkgfile $PACKAGE files`
if [ ! -d "debian/tmp" ]; then
error "debian/tmp does not exist"
fi
tomove=""
# debian/files has a different purpose, so ignore it.
if [ "$files" -a "$files" != "debian/files" ]; then
tomove=`cat $files`
fi
if [ \( "$PACKAGE" = "$DH_FIRSTPACKAGE" -o "$DH_PARAMS_ALL" \) \
-a "$*" ]; then
tomove="$* $tomove"
fi
if [ "$tomove" -a "$TMP" = "debian/tmp" ]; then
error "I was asked to move files from debian/tmp to debian/tmp."
fi
if [ "$tomove" ]; then
if [ ! -d "$TMP" ]; then
doit "install -d $TMP"
fi
# Order the files. First all real files, then symlinks.
# Putting symlinks last is a nice thing to do for library
# packages and doesn't affect much of anything else.
#
# (The echo is in here to expand wildcards. Note that 'ls'
# won't work properly.)
# The filelist is used, so even very weird filenames can be
# moved.
doit "rm -f movelist"
for i in `(cd debian/tmp; echo $tomove)`; do
complex_doit "(cd debian/tmp ; find $i ! -type d -and ! -type l -print) >> movelist"
done
for i in `(cd debian/tmp; echo $tomove)`; do
complex_doit "(cd debian/tmp ; find $i ! -type d -and -type l -print) >> movelist"
done
complex_doit "(cd debian/tmp;tar --create --remove-files --files-from=../../movelist --file -) | (cd $TMP;tar xpf -)"
doit "rm -f movelist"
fi
done
|