1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2004 Free Software Foundation, Inc.
|
---|
3 | #
|
---|
4 | # This file is part of GNU Automake.
|
---|
5 | #
|
---|
6 | # GNU Automake is free software; you can redistribute it and/or modify
|
---|
7 | # it under the terms of the GNU General Public License as published by
|
---|
8 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | # any later version.
|
---|
10 | #
|
---|
11 | # GNU Automake is distributed in the hope that it will be useful,
|
---|
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | # GNU General Public License for more details.
|
---|
15 | #
|
---|
16 | # You should have received a copy of the GNU General Public License
|
---|
17 | # along with Automake; see the file COPYING. If not, write to
|
---|
18 | # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
---|
19 | # Boston, MA 02110-1301, USA.
|
---|
20 |
|
---|
21 | # Test _PYTHON with conditionals.
|
---|
22 |
|
---|
23 | required=python
|
---|
24 | . ./defs || exit 1
|
---|
25 |
|
---|
26 | set -e
|
---|
27 |
|
---|
28 | cat >>configure.in <<'EOF'
|
---|
29 | AM_PATH_PYTHON
|
---|
30 | AM_CONDITIONAL([ONE], [test "x$one" = x1])
|
---|
31 | AC_OUTPUT
|
---|
32 | EOF
|
---|
33 |
|
---|
34 | cat > Makefile.am <<'END'
|
---|
35 | if ONE
|
---|
36 | mydir=$(prefix)/my
|
---|
37 | my_PYTHON = one.py
|
---|
38 | else
|
---|
39 | yourdir=$(prefix)/your
|
---|
40 | your_PYTHON = two.py
|
---|
41 | endif
|
---|
42 |
|
---|
43 | one.py:
|
---|
44 | echo 'def one(): return 1' >$@
|
---|
45 | two.py:
|
---|
46 | echo 'def two(): return 1' >$@
|
---|
47 |
|
---|
48 | disttest: distdir
|
---|
49 | test -f $(distdir)/one.py
|
---|
50 | test -f $(distdir)/two.py
|
---|
51 | END
|
---|
52 |
|
---|
53 | $ACLOCAL
|
---|
54 | $AUTOCONF
|
---|
55 | $AUTOMAKE --add-missing
|
---|
56 |
|
---|
57 | mkdir inst
|
---|
58 | inst=`pwd`/inst
|
---|
59 | mkdir build
|
---|
60 | cd build
|
---|
61 | ../configure --prefix="$inst"
|
---|
62 | $MAKE install
|
---|
63 | test -f $inst/your/two.py
|
---|
64 | test -f $inst/your/two.pyc
|
---|
65 | test -f $inst/your/two.pyo
|
---|
66 | test ! -f $inst/my/one.py
|
---|
67 | test ! -f $inst/my/one.pyc
|
---|
68 | test ! -f $inst/my/one.pyo
|
---|
69 | $MAKE uninstall
|
---|
70 | test ! -f $inst/your/two.py
|
---|
71 | test ! -f $inst/your/two.pyc
|
---|
72 | test ! -f $inst/your/two.pyo
|
---|
73 |
|
---|
74 | ../configure --prefix="$inst" one=1
|
---|
75 | $MAKE install
|
---|
76 | test ! -f $inst/your/two.py
|
---|
77 | test ! -f $inst/your/two.pyc
|
---|
78 | test ! -f $inst/your/two.pyo
|
---|
79 | test -f $inst/my/one.py
|
---|
80 | test -f $inst/my/one.pyc
|
---|
81 | test -f $inst/my/one.pyo
|
---|
82 | $MAKE uninstall
|
---|
83 | test ! -f $inst/my/one.py
|
---|
84 | test ! -f $inst/my/one.pyc
|
---|
85 | test ! -f $inst/my/one.pyo
|
---|
86 |
|
---|
87 | $MAKE disttest
|
---|