]> Pileus Git - ~andy/sunrise/blob - x11-wm/clfswm/files/clfswm-1106-2-configure.patch
x11-wm/clfswm: New Ebuild for bug 398779
[~andy/sunrise] / x11-wm / clfswm / files / clfswm-1106-2-configure.patch
1 --- clfswm-1106-2/configure.old 2011-06-17 20:55:15.000000000 +0200
2 +++ clfswm-1106-2/configure     2012-01-09 02:31:15.558044321 +0100
3 @@ -3,6 +3,7 @@
4  CONFIGURE_VERSION=0.2
5  
6  PREFIX="/usr/local"
7 +LIBDIR="lib"
8  lisp=clisp
9  lisp_opt=''
10  lisp_bin=''
11 @@ -21,6 +22,7 @@
12    -h, --help                display this help and exit
13    -V, --version             display version information and exit
14    --prefix=PREFIX           install architecture-independent files in PREFIX [/usr/local]
15 +  --libdir=LIBDIR           libdir path
16    -l, --with-lisp           use <lisp> as the common lisp implementation type [$lisp]
17    -b, --lisp-bin            use <bin> as the common lisp program [$lisp_bin] (default: same as with-lisp type)
18    -o, --lisp-opt            use <opt> as lisp option [$lisp_opt]
19 @@ -50,6 +52,9 @@
20         --prefix)
21             shift
22             PREFIX="$1" ;;
23 +       --libdir)
24 +           shift
25 +           LIBDIR="$1" ;;
26         -d|--dump-path)
27             shift
28             dump_path="$1" ;;
29 @@ -98,6 +103,7 @@
30  
31  
32  echo "  prefix=$PREFIX
33 +  libdir=$LIBDIR
34    with-lisp=$lisp
35    lisp-bin=$lisp_bin
36    lisp-opt=$lisp_opt
37 @@ -117,6 +123,7 @@
38  
39  sed -e "s#+DESTDIR+#$DESTDIR#g" \
40      -e "s#+BUILD_PATH+#$(pwd)/#g" \
41 +    -e "s#+LIBDIR+#$LIBDIR#g" \
42      Makefile.template > Makefile
43  
44