2 # Copyright (C) 2009 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Make sure to extract the correct mansection from files in man_MANS.
23 echo AC_OUTPUT
>> configure.
in
25 cat > Makefile.am
<< 'END'
26 man_MANS
= foo-1.4
.5/foo
.2 foo-1.4
.5/bar
.3 baz-1.4
.2
27 notrans_man_MANS
= foo-1.4
.5/nfoo
.2 foo-1.4
.5/nbar
.3 nbaz-1.4
.2
43 # Let's play with $DESTDIR too, it shouldn't hurt.
44 .
/configure
--mandir=/man
45 DESTDIR
="`pwd`/_inst" $MAKE -e install
47 test -f .
/_inst
/man
/man
2/foo
.2
48 test -f .
/_inst
/man
/man
2/nfoo
.2
49 test -f .
/_inst
/man
/man
2/baz-1.4
.2
50 test -f .
/_inst
/man
/man
2/nbaz-1.4
.2
51 test -f .
/_inst
/man
/man
3/bar
.3
52 test -f .
/_inst
/man
/man
3/nbar
.3
54 test ! -d .
/_inst
/man
/man1
55 test ! -d .
/_inst
/man
/man4
56 test ! -d .
/_inst
/man
/man5
58 DESTDIR
="`pwd`/_inst" $MAKE -e uninstall
60 test ! -f .
/_inst
/man
/man
2/foo
.2
61 test ! -f .
/_inst
/man
/man
2/nfoo
.2
62 test ! -f .
/_inst
/man
/man
2/baz-1.4
.2
63 test ! -f .
/_inst
/man
/man
2/nbaz-1.4
.2
64 test ! -f .
/_inst
/man
/man
3/bar
.3
65 test ! -f .
/_inst
/man
/man
3/nbar
.3