/usr/bin/yaz-config is in libyaz4-dev 4.2.30-4build2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190  | #!/bin/sh
# This file is part of the YAZ toolkit.
# Copyright (C) 1995-2011 Index Data
prefix=/usr
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
echo_cflags=no
echo_libs=no
echo_help=no
echo_source=no
echo_lalibs=no
echo_comp=no
src_root=/build/yaz-MaY5ao/yaz-4.2.30
build_root=/build/yaz-MaY5ao/yaz-4.2.30
ICU_LIBS="-licui18n -licuuc -licudata "
ICU_CPPFLAGS=" -D YAZ_HAVE_ICU=1"
SSL_LIBS="-lgnutls"
LIBS="-lexslt -lxslt -lxml2  -lpthread"
VERSION=4.2.30
YAZVERSION=$VERSION
VERSION_SHA1=98864b44c654645bc16b2c54f822dc2e45a93031
usage()
{
    cat <<EOF
Usage: yaz-config [OPTIONS] [LIBRARIES]
Options:
	[--prefix[=DIR]]
	[--version]
	[--libs]
	[--lalibs]
	[--cflags]
	[--comp]
        [-V]
Libraries:
	threads icu server static
EOF
	exit $1
}
while test $# -gt 0; do
    case "$1" in
	-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
	*) optarg= ;;
    esac
    
    case $1 in
	--prefix=*)
	    prefix=$optarg
	    ;;
	--prefix)
	    echo $prefix
	    exit 0
	    ;;
        -V)
	    echo "$VERSION $VERSION_SHA1"
	    exit 0
            ;;
	--version)
	    echo $VERSION
	    exit 0
	    ;;
	--cflags)
	    echo_cflags=yes
	    ;;
	--libs)
	    echo_libs=yes
	    ;;
	--lalibs)
	    echo_lalibs=yes
	    ;;
	--comp)
	    echo_comp=yes
	    ;;
	threads)
	    lib_thread=yes
	    ;;
	icu)
	    if test "$ICU_CPPFLAGS"; then
		lib_icu=yes
	    fi
	    ;;
	ssl)
	    lib_ssl=yes
	    ;;
	server)
	    lib_thread=yes
	    lib_server=yes
	    ;;
	static)
	    lib_static=yes
	    ;;
	-*)
	    echo_help=yes
	    ;;
    esac
    shift
done
YAZLIB="-lyaz"
if test "$lib_server" = "yes"; then
    YAZLIB="-lyaz_server $YAZLIB"
fi
if test "$lib_icu" = "yes"; then
    YAZLIB="-lyaz_icu $YAZLIB"
fi
if test "$lib_ssl" = "yes"; then
    LIBS="${SSL_LIBS} $LIBS"
fi
YAZINC=" -DYAZ_POSIX_THREADS=1 -DYAZ_HAVE_XML2=1 -DYAZ_HAVE_XSLT=1 -DYAZ_HAVE_EXSLT=1 -I/usr/include/libxml2"
if test "$echo_source" = "yes"; then
    YAZBIN=${build_root}/bin
    if test "$lib_static" = "yes"; then
        if test "$lib_ssl" != "yes"; then
            LIBS="${SSL_LIBS} $LIBS"
        fi
        YAZLIB="${build_root}/src/.libs/libyaz.a"
        if test "$lib_server" = "yes"; then
    	    YAZLIB="${build_root}/src/.libs/libyaz_server.a $YAZLIB"
        fi
        if test "$lib_icu" = "yes"; then
    	    YAZLIB="${build_root}/src/.libs/libyaz_icu.a $YAZLIB"
        fi
    else
        YAZLIB="-L${build_root}/src/.libs $YAZLIB"
    fi
    YAZLIB="$YAZLIB $LIBS"
    YAZLALIB="${build_root}/src/libyaz.la"
    if test "$lib_server" = "yes"; then
	YAZLALIB="${build_root}/src/libyaz_server.la $YAZLALIB"
    fi
    if test "$lib_icu" = "yes"; then
	YAZLALIB="${build_root}/src/libyaz_icu.la $YAZLALIB"
    fi
    YAZLALIB="$YAZLALIB $LIBS"
    YAZINC="-I${src_root}/include $YAZINC"
    YAZCOMP=${src_root}/util/yaz-asncomp
else
    YAZBIN=${prefix}/bin
    YAZCOMP=${prefix}/bin/yaz-asncomp
    if test "$prefix" != "/usr"; then
	YAZLIB="-L$libdir $YAZLIB"
    fi
    YAZLIB="$YAZLIB $LIBS"
    YAZLALIB=$YAZLIB
    if test "$prefix" != "/usr"; then
	YAZINC="-I${includedir} $YAZINC"
    fi
fi
if test "$lib_thread" = "yes"; then
    :
fi
if test "$lib_icu" = "yes"; then
    YAZINC="$YAZINC $ICU_CPPFLAGS"
    YAZLIB="$YAZLIB $ICU_LIBS"
    YAZLALIB="$YAZLALIB $ICU_LIBS"
fi
if test "$echo_help" = "yes"; then
    usage 1 1>&2
fi
if test "$echo_cflags" = "yes"; then
    echo $YAZINC
fi
if test "$echo_libs" = "yes"; then
    echo $YAZLIB
fi
if test "$echo_lalibs" = "yes"; then
    echo $YAZLALIB
fi
if test "$echo_comp" = "yes"; then
    echo $YAZCOMP
fi
# Local Variables:
# mode:shell-script
# sh-indentation: 2
# sh-basic-offset: 4
# End:
 |