removed efreet-config.in because of pkg-config

SVN revision: 30533
This commit is contained in:
Andreas Volz 2007-07-01 18:25:36 +00:00
parent 9a38ae894a
commit e8a13809f9
3 changed files with 1 additions and 61 deletions

View File

@ -6,7 +6,7 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
stamp-h.in debian/changelog depcomp efreet_doxy_warnings.txt \
debian/changelog
bin_SCRIPTS = efreet-config
bin_SCRIPTS =
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = efreet.pc efreet-mime.pc

View File

@ -63,7 +63,6 @@ CFLAGS=$PCFLAGS
AC_SUBST(requirements)
AC_OUTPUT([
efreet-config
efreet.pc
efreet-mime.pc
Makefile

View File

@ -1,59 +0,0 @@
#!/bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
exec_prefix_set=no
usage="\
Usage: efreet-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
if test $# -eq 0; then
echo "${usage}" 1>&2
exit 1
fi
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
if test $exec_prefix_set = no ; then
exec_prefix=$optarg
fi
;;
--prefix)
echo $prefix
;;
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
;;
--exec-prefix)
echo $exec_prefix
;;
--version)
echo @VERSION@
;;
--cflags)
if test @prefix@/include != /usr/include ; then
includes="-I@prefix@/include"
fi
echo $includes @ECORE_CFLAGS@ -I$prefix/include/efreet
;;
--libs)
libdirs=-L@libdir@
echo $libdirs -lefreet @ECORE_LIBS@
;;
*)
echo "${usage}" 1>&2
exit 1
;;
esac
shift
done
exit 0