SVN revision: 36712devs/princeamd/enlightenment-0.17-elive
parent
5303560262
commit
dab9aaa5c5
7 changed files with 2 additions and 75 deletions
@ -1,2 +1 @@ |
||||
debian/tmp/usr/bin/enlightenment-config |
||||
debian/tmp/usr/include/enlightenment/*.h |
||||
|
@ -1,65 +0,0 @@ |
||||
#!/bin/sh |
||||
|
||||
prefix=@prefix@ |
||||
exec_prefix=@exec_prefix@ |
||||
exec_prefix_set=no |
||||
|
||||
usage="\ |
||||
Usage: $0 [--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) |
||||
includes="-I@prefix@/include/enlightenment" |
||||
echo $includes @e_cflags@ |
||||
;; |
||||
--libs) |
||||
libdirs="-L@libdir@" |
||||
echo $libdirs |
||||
;; |
||||
--module-dir) |
||||
dir="@libdir@/@PACKAGE@/modules" |
||||
echo $dir |
||||
;; |
||||
--config-apps-dir) |
||||
dir="@prefix@/share/@PACKAGE@/config-apps" |
||||
echo $dir |
||||
;; |
||||
*) |
||||
echo "${usage}" 1>&2 |
||||
exit 1 |
||||
;; |
||||
esac |
||||
shift |
||||
done |
||||
|
||||
exit 0 |
Loading…
Reference in new issue