blob: b114a99116335cc46e81d43b144c035d42c6fa87 (
plain) (
blame)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# $FreeBSD$
#
# Run autoreconf in AUTORECONF_WRKSRC to update configure, Makefile.in and
# other build scripts.
#
# Autoreconf runs the following commands provided by devel/autoconf and
# devel/automake. Each command applies to a single configure.ac or
# configure.in (old name). If configure.ac defines subdirectories with their
# own configure.ac (using AC_CONFIG_SUBDIRS), autoreconf will recursively
# update those as well.
#
# aclocal Looks up definitions of m4 macros used in configure.ac that are
# not provided by autoconf and copies them from their source *.m4
# file to aclocal.m4. Local *.m4 files included with the source
# code take precedence over systemwide *.m4 files.
# autoconf Generates configure from configure.ac using macro definitions
# provided by autoconf itself and aclocal.m4.
# autoheader Generates a configuration header (typically config.h.in) from
# configure.ac and the macro definitions in aclocal.m4. Run by
# autoreconf if configure.ac (or one of the macros it uses)
# contains AC_CONFIG_HEADERS, AC_CONFIG_HEADER (undocumented), or
# AM_CONFIG_HEADER (obsolete).
# automake Generates Makefile.in from Makefile.am for each Makefile
# listed in configure.ac (using AC_CONFIG_FILES). Also updates
# build scripts like compile, depcomp, install-sh, ylwrap,...
# Run by autoreconf if configure.ac (or one of the macros it
# uses) contains AM_INIT_AUTOMAKE.
#
# Autoreconf may also run these additional commands provided by other ports.
# A port needs to have a build depdendency on these ports when that's the case.
#
# autopoint Provided by devel/gettext-tools. Updates gettext related *.m4
# files included with the source code and build scripts such as
# config.rpath. Run by autoreconf if configure.ac (or one of the
# macros it uses) contains AM_GNU_GETTEXT. A build dependency on
# devel/gettext-tools can be added with USES+=gettext-tools.
# Note that autoreconf runs autopoint even if a port has an NLS
# option and the option is disabled. The build dependency on
# gettext-tools is not optional. If the run dependency on
# gettext is optional this can be specified with
# NLS_USES=gettext-runtime.
# libtoolize Provided by devel/libtool. Updates libtool related *.m4 files
# included with the source code and build scripts such as
# ltmain.sh. Run by autoreconf if configure.ac (or one of the
# macros it uses) contains AC_PROG_LIBTOOL or LT_INIT. A build
# dependency on devel/libtool is added implicitly when USES
# contains both autoreconf and libtool.
#
# Feature: autoreconf
# Usage: USES=autoreconf or USES=autoreconf:args
# Valid args: build Don't run autoreconf, only add build dependencies
#
# MAINTAINER: portmgr@FreeBSD.org
.if !defined(_INCLUDE_USES_AUTORECONF_MK)
_INCLUDE_USES_AUTORECONF_MK= yes
_USES_POST+= autoreconf
BUILD_DEPENDS+= autoconf>=2.69:devel/autoconf \
automake>=1.16.1:devel/automake
.if defined(libtool_ARGS) && empty(libtool_ARGS:Mbuild)
BUILD_DEPENDS+= libtoolize:devel/libtool
.endif
AUTORECONF?= ${LOCALBASE}/bin/autoreconf
AUTORECONF_WRKSRC?= ${WRKSRC}
.endif
.if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_AUTORECONF_POST_MK)
_INCLUDE_USES_AUTORECONF_POST_MK= yes
.if empty(autoreconf_ARGS)
_USES_configure+= 470:do-autoreconf
do-autoreconf:
.for f in AUTHORS ChangeLog INSTALL NEWS README
# Don't modify time stamps if the files already exist
@test -e ${AUTORECONF_WRKSRC}/${f} || ${TOUCH} ${AUTORECONF_WRKSRC}/${f}
.endfor
.if defined(_USE_GNOME) && ${_USE_GNOME:Mintltool}
@(cd ${AUTORECONF_WRKSRC} && \
if test -f configure.ac; then configure=configure.ac; \
else configure=configure.in; fi && \
if ${EGREP} -q '^(AC|IT)_PROG_INTLTOOL' $${configure}; \
then ${LOCALBASE}/bin/intltoolize -f -c; fi)
.endif
@(cd ${AUTORECONF_WRKSRC} && ${AUTORECONF} -f -i)
.elif ! ${autoreconf_ARGS:Mbuild}
IGNORE= Incorrect 'USES+=autoreconf:${autoreconf_ARGS}' expecting 'USES+=autoreconf[:build]'
.endif
.endif
|