]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/libsigcx/libsigcx0/libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / libsigcx / libsigcx0 / libsigcx-0.6.4-add-missing-autogen-sh-swb.patch
1 2005-05-06  Steven Brown  <swbrown@ucsd.edu>
2
3         * autogen.sh: Was missing from dist - add from the Arch repository.
4
5
6 diff -Nur libsigcx-old/autogen.sh libsigcx/autogen.sh
7 --- libsigcx-old/autogen.sh     1969-12-31 16:00:00.000000000 -0800
8 +++ libsigcx/autogen.sh 2005-05-06 19:48:39.000000000 -0700
9 @@ -0,0 +1,46 @@
10 +#! /bin/sh
11 +
12 +srcdir=`dirname $0`
13 +test -z "$srcdir" && srcdir=.
14 +
15 +PKG_NAME="sigcx"
16 +
17 +(test -f "$srcdir/configure.ac" \
18 +  && test -d "$srcdir/sigcx" \
19 +  && test -d "$srcdir/sigcx/macros") || {
20 +    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
21 +    echo " top-level $PKG_NAME directory"
22 +    exit 1
23 +}
24 +
25 +
26 +echo "Adding libtools."
27 +libtoolize --automake
28 +
29 +echo "Building macros."
30 +aclocal -I scripts $ACLOCAL_FLAGS
31 +
32 +echo "Building config header."
33 +autoheader
34 +
35 +echo "Building makefiles."
36 +automake --add-missing
37 +
38 +echo "Building configure."
39 +autoconf
40 +
41 +rm -f config.cache
42 +
43 +if test -z "$AUTOGEN_SUBDIR_MODE"; then
44 +
45 +    echo "Running configure."
46 +    ./configure --enable-maintainer-mode "$@"
47 +    echo
48 +    echo 'run "make"'
49 +    echo
50 +else
51 +    echo
52 +    echo 'run "./configure ; make"'
53 +    echo
54 +fi
55 +