~ubuntu-branches/ubuntu/saucy/libdvdread/saucy

« back to all changes in this revision

Viewing changes to misc/dvdread-config.sh

  • Committer: Package Import Robot
  • Author(s): Bryce Harrington
  • Date: 2011-11-28 17:12:51 UTC
  • mfrom: (1.1.4) (3.2.10 sid)
  • Revision ID: package-import@ubuntu.com-20111128171251-fxbi0nd6rrz3lsfb
Tags: 4.2.0-1ubuntu1
* Merge from debian testing.  Remaining changes:
  - Re-add missing install-css.sh. Update the script with patch by Gene Cumm
    for dynamic version calculation.
  - debian/control: add Suggests for install-css.sh on wget, debhelper, etc.
  - debian/rules: install install-css.sh, leave perms executable.
  - 100-quell-vts-tmapt-warning.patch - Don't recommend sending bug
    reports when VTS_TMAPT is missing
  - 102-reorder-linkage.patch - Fix link order for shared library loading.
* Drop 101-fix-msb-unicode.patch; fixed upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
usage()
4
4
{
5
 
        cat <<EOF
 
5
        cat <<EOF
6
6
Usage: dvdread-config [OPTIONS] [LIBRARIES]
7
7
Options:
8
 
        [--prefix[=DIR]]
9
 
        [--version]
 
8
        [--prefix[=DIR]]
 
9
        [--version]
10
10
        [--libs]
11
 
        [--cflags]
 
11
        [--cflags]
12
12
EOF
13
 
        exit $1
 
13
        exit $1
14
14
}
15
15
 
16
16
if test $# -eq 0; then
17
 
        usage 1 1>&2
 
17
        usage 1 1>&2
18
18
fi
19
19
 
20
20
while test $# -gt 0; do
44
44
done
45
45
 
46
46
if test "$echo_prefix" = "yes"; then
47
 
        echo $prefix
 
47
        echo $prefix
48
48
fi
49
49
 
50
50
if test "$echo_cflags" = "yes"; then
53
53
 
54
54
if test "$echo_libs" = "yes"; then
55
55
      echo -L$libdir $dvdreadlib
56
 
fi      
 
56
fi