summaryrefslogtreecommitdiff
blob: a95e1a2054118ebcb14d6607af9584fa6554e38a (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/bin/bash
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: prepalldocs 3483 2006-06-10 21:40:40Z genone $

if [[ -z $1 ]] ; then
	echo "${0##*/}: at least one argument needed" 1>&2
	exit 1
fi

# figure out the new suffix
suffix=$(ecompress --suffix)
if [[ -z ${suffix} ]] ; then
	vecho "${0##*/}: unable to figure out compressed suffix"
	exit 1
fi

source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh

# funk_up_dir(action, suffix, binary)
#	- action: compress or decompress
#	- suffix: the compression suffix to work with
#	- binary: the program to execute that'll compress/decompress
# The directory we act on is implied in the ${dir} variable
funk_up_dir() {
	local act=$1 suffix=$2 binary=$3

	local negate=""
	[[ ${act} == "compress" ]] && negate="!"

	# first we act on all the files
	find "${dir}" -type f ${negate} -iname '*.'${suffix} -print0 | ${XARGS} -0 ${binary}
	((ret+=$?))

	find -L "${dir}" -type l | \
	while read brokenlink ; do
		olddest=$(readlink "${brokenlink}")
		[[ ${act} == "compress" ]] \
			&& newdest="${olddest}${suffix}" \
			|| newdest="${olddest%.${suffix}}"
		rm -f "${brokenlink}"
		[[ ${act} == "compress" ]] \
			&& ln -snf "${newdest}" "${brokenlink}${suffix}" \
			|| ln -snf "${newdest}" "${brokenlink%.${suffix}}"
		((ret+=$?))
	done
}

ret=0

for dir in "$@" ; do
	dir="${D}${dir}"
	if [[ ! -d ${dir} ]] ; then
		vecho "${0##*/}: ${dir#${D}} does not exist!"
		continue
	else
		vecho "${0##*/}: $(ecompress --bin) ${dir#${D}}"
	fi

	# not uncommon for packages to compress doc files themselves
	funk_up_dir "decompress" "Z" "gunzip"
	funk_up_dir "decompress" "gz" "gunzip"
	funk_up_dir "decompress" "bz2" "bunzip2"

	# now lets do our work
	funk_up_dir "compress" "${suffix}" "ecompress"
done

exit ${ret}