removed eet-config
authortilman <tilman>
Thu, 22 Mar 2007 17:07:46 +0000 (17:07 +0000)
committertilman <tilman@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 22 Mar 2007 17:07:46 +0000 (17:07 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/eet@28925 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

.cvsignore
Makefile.am
configure.in
debian/eet-config.1 [deleted file]
debian/libeet0-dev.install
eet-config.in [deleted file]

index 9a4bb84..c5978ff 100644 (file)
@@ -12,7 +12,6 @@ config.status
 config.sub
 configure
 configure-stamp
-eet-config
 eet.pc
 eet_docs.tar.gz
 libtool
index 8cff0c2..ff3e1a6 100644 (file)
@@ -10,8 +10,6 @@ MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \
                       eet.spec \
                       debian/changelog
 
-bin_SCRIPTS = eet-config
-
 EXTRA_DIST = AUTHORS COPYING COPYING-PLAIN eet.c.in \
             README.in README \
             eet.pc.in \
@@ -20,7 +18,6 @@ EXTRA_DIST = AUTHORS COPYING COPYING-PLAIN eet.c.in \
             debian/changelog.in \
             debian/control \
             debian/copyright \
-            debian/eet-config.1 \
             debian/libeet0-dev.install \
             debian/libeet0.install \
             debian/rules
index cb16c4e..c57f365 100644 (file)
@@ -131,12 +131,9 @@ eet.pc
 eet.c
 src/Makefile
 src/lib/Makefile
-eet-config
 README
 eet.spec
 debian/changelog
-],[
-chmod +x eet-config
 ])
 
 
diff --git a/debian/eet-config.1 b/debian/eet-config.1
deleted file mode 100644 (file)
index b64bb22..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-.\"                                      Hey, EMACS: -*- nroff -*-
-.TH EET 1 "oktober  3, 2002"
-.SH NAME
-eet-config \- script to get information about the installed version of Eet
-.SH SYNOPSIS
-.B eet-config [\-\-version] [\-\-libs] [\-\-cflags]
-.SH DESCRIPTION
-\fIeet-config\fP is a tool that is used by configure to determine the
-availability of eet and the compiler and linker flags that should be used to
-compile programs using it.
-.SH OPTIONS
-\fIeet-config\fP accepts the following options:
-.TP
-.B \-\-version
-Print the currently installed version of \fIeet\fP on the standard output.
-.TP
-.B \-\-libs
-Print the linker flags that are necessary to link a \fIeet\fP\-program.
-.TP
-.B \-\-cflags
-Print the compiler flags that are necessary to link a \fIeet\fP\-program.
-.SH SEE ALSO
-.BR eet (1).
-.SH AUTHOR
-This manual page was written by Sytse Wielinga
-<s.b.wielinga@student.utwente.nl> for the Debian GNU/Linux system (but may be
-used by others).
index 6aebdcb..d33fb9b 100644 (file)
@@ -1,4 +1,3 @@
-debian/tmp/usr/bin/eet-config
 debian/tmp/usr/lib/pkgconfig/*
 debian/tmp/usr/include/*
 debian/tmp/usr/lib/lib*.a
diff --git a/eet-config.in b/eet-config.in
deleted file mode 100644 (file)
index e08f1c1..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/sh
-
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-exec_prefix_set=no
-
-usage="\
-Usage: eet-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
-      ;;
-    --libs)
-      libdirs=-L@libdir@
-      echo $libdirs -leet -lz -ljpeg @fnmatch_libs@ @winsock_libs@
-      ;;
-    *)
-      echo "${usage}" 1>&2
-      exit 1
-      ;;
-  esac
-  shift
-done
-
-exit 0