aboutsummaryrefslogtreecommitdiffstats
path: root/pkgconfigdeps.sh
blob: d2c72e37f5a1edd0298b1f34f66367b3eb537f13 (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
#!/bin/bash

pkgconfig=/usr/bin/pkg-config
test -x $pkgconfig || {
    cat > /dev/null
    exit 0
}

[ $# -ge 1 ] || {
    cat > /dev/null
    exit 0
}

$pkgconfig --atleast-pkgconfig-version="0.24" || {
    cat > /dev/null
    exit 0
}

case $1 in
-P|--provides)
    while read filename ; do
    case "${filename}" in
    *.pc)
	pcfiles=${pcfiles}" ${filename}"
	DIR="`dirname ${filename}`"
	PKG_CONFIG_PATH="$DIR:$DIR/../../share/pkgconfig"
	    # Query the dependencies of the package.
	    PKG_CONFIG_PATH=$PKG_CONFIG_PATH $pkgconfig --print-errors --print-provides $pcfiles | while read n r v ; do
		# We have a dependency.  Make a note that we need the pkgconfig
		# tool for this package.
		test -z "$v" && test -n "$r" && echo "Error with pkgconfig($n)" >&2 && exit 1
		echo "pkgconfig($n)" "$r" "$v"
	    done
	    test ${PIPESTATUS[0]} -ne 0 && echo "$pkgconfig returned an error" >&2 && exit 1
	    # The dependency on the pkgconfig package itself.
	;;
    esac
    done
    ;;
-R|--requires)
    while read filename ; do
    case "${filename}" in
    *.pc)
	pcfiles=${pcfiles}" ${filename}"
	DIR="`dirname ${filename}`"
	PKG_CONFIG_PATH="$DIR:$DIR/../../share/pkgconfig"
	PKG_CONFIG_PATH=$PKG_CONFIG_PATH $pkgconfig --print-errors --print-requires --print-requires-private ${pcfiles} | while read n r v ; do
		test -z "$v" && test -n "$r" && echo "Error with pkgconfig($n)" >&2 && exit 1
		echo "pkgconfig($n)" "$r" "$v"
	done
	test ${PIPESTATUS[0]} -ne 0 && echo "$pkgconfig returned an error" >&2 && exit 1
    esac
    done
    ;;
esac
exit 0