summaryrefslogtreecommitdiff
path: root/t/buildsystems/autoconf/configure
blob: adea14e6c389a51008f505b0dbcbc07f3cafdbd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/perl

# Emulate autoconf behaviour and do some checks

use strict;
use warnings;

my @OPTIONS=qw(
   ^--build=.*$
   ^--prefix=/usr$
   ^--includedir=\$\{prefix\}/include$
   ^--mandir=\$\{prefix\}/share/man$
   ^--infodir=\$\{prefix\}/share/info$
   ^--sysconfdir=/etc$
   ^--localstatedir=/var$
   ^--libexecdir=\$\{prefix\}/lib/.*$
   ^--disable-maintainer-mode$
   ^--disable-dependency-tracking$
);

# Verify if all command line arguments were passed
my @options = map { { regex => qr/$_/,
                      str => $_,
                      found => 0 } } @OPTIONS;
my @extra_args;
ARGV_LOOP: foreach my $arg (@ARGV) {
	foreach my $opt (@options) {
		if ($arg =~ $opt->{regex}) {
			$opt->{found} = 1;
			next ARGV_LOOP;
		}
	}
	# Extra / unrecognized argument
	push @extra_args, $arg;
}

my @notfound = grep { ! $_->{found} and $_ } @options;
if (@notfound) {
	print STDERR "Error: the following default options were NOT passed\n";
	print STDERR "  ", $_->{str}, "\n" foreach (@notfound);
	exit 1;
}

# Create a simple Makefile
open(MAKEFILE, ">", "Makefile");
print MAKEFILE <<EOF;
CONFIGURE := $0
all: stamp_configure \$(CONFIGURE)
	\@echo Package built > stamp_build

# Tests if dh_auto_test executes 'check' target if 'test' does not exist
check: \$(CONFIGURE) stamp_build
	\@echo Tested > stamp_test

install: stamp_build
	\@echo DESTDIR=\$(DESTDIR) > stamp_install

# Tests whether dh_auto_clean executes distclean but does not touch
# this target
clean:
	echo "This should not have been executed" >&2 && exit 1

distclean:
	\@rm -f stamp_* Makefile

.PHONY: all check install clean distclean
EOF
close MAKEFILE;

open(STAMP, ">", "stamp_configure");
print STAMP $_, "\n" foreach (@extra_args);
close STAMP;

exit 0;