| 1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2005 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.13 2005/08/29 10:09:07 flameeyes Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.20 2005/09/04 15:15:37 swegener Exp $ |
| 4 | # |
4 | # |
| 5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
5 | # Author: Diego Pettenò <flameeyes@gentoo.org> |
| 6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
6 | # Enhancements: Martin Schlemmer <azarah@gentoo.org> |
| 7 | # |
7 | # |
| 8 | # This eclass is for handling autotooled software packages that |
8 | # This eclass is for handling autotooled software packages that |
| … | |
… | |
| 15 | #DEPEND="sys-devel/automake |
15 | #DEPEND="sys-devel/automake |
| 16 | # sys-devel/autoconf |
16 | # sys-devel/autoconf |
| 17 | # sys-devel/libtool" |
17 | # sys-devel/libtool" |
| 18 | # |
18 | # |
| 19 | # Ebuilds should rather depend on the proper version of the tool. |
19 | # Ebuilds should rather depend on the proper version of the tool. |
|
|
20 | |
|
|
21 | # Variables: |
|
|
22 | # |
|
|
23 | # AT_M4DIR - Additional director(y|ies) aclocal should search |
|
|
24 | # AT_GNUCONF_UPDATE - Should gnuconfig_update() be run (normally handled by |
|
|
25 | # econf()) [yes|no] |
|
|
26 | |
|
|
27 | # Functions: |
|
|
28 | # |
|
|
29 | # eautoreconf() - Should do a full autoreconf - normally what most people |
|
|
30 | # will be interested in. Also should handle additional |
|
|
31 | # directories specified by AC_CONFIG_SUBDIRS. |
|
|
32 | # eaclocal() - Runs aclocal. Respects AT_M4DIR for additional directories |
|
|
33 | # to search for macro's. |
|
|
34 | # _elibtoolize() - Runs libtoolize. Note the '_' prefix .. to not collide |
|
|
35 | # with elibtoolize() from libtool.eclass |
|
|
36 | # eautoconf - Runs autoconf. |
|
|
37 | # eautoheader - Runs autoheader. |
|
|
38 | # eautomake - Runs automake |
|
|
39 | # |
|
|
40 | |
|
|
41 | # XXX: M4DIR should be depreciated |
|
|
42 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
|
|
43 | AT_GNUCONF_UPDATE="no" |
|
|
44 | |
|
|
45 | |
|
|
46 | # This function mimes the behavior of autoreconf, but uses the different |
|
|
47 | # eauto* functions to run the tools. It doesn't accept parameters, but |
|
|
48 | # the directory with include files can be specified with AT_M4DIR variable. |
|
|
49 | # |
|
|
50 | # Note: doesn't run autopoint right now, but runs gnuconfig_update. |
|
|
51 | eautoreconf() { |
|
|
52 | local pwd=$(pwd) x |
|
|
53 | |
|
|
54 | # Take care of subdirs |
|
|
55 | for x in $(autotools_get_subdirs); do |
|
|
56 | if [[ -d ${x} ]] ; then |
|
|
57 | cd "${x}" |
|
|
58 | eautoreconf |
|
|
59 | cd "${pwd}" |
|
|
60 | fi |
|
|
61 | done |
|
|
62 | |
|
|
63 | eaclocal |
|
|
64 | _elibtoolize --copy --force |
|
|
65 | eautoconf |
|
|
66 | eautoheader |
|
|
67 | eautomake |
|
|
68 | |
|
|
69 | # Normally run by econf() |
|
|
70 | [[ ${AT_GNUCONF_UPDATE} == "yes" ]] && gnuconfig_update |
|
|
71 | } |
|
|
72 | |
|
|
73 | # These functions runs the autotools using autotools_run_tool with the |
|
|
74 | # specified parametes. The name of the tool run is the same of the function |
|
|
75 | # without e prefix. |
|
|
76 | # They also force installing the support files for safety. |
|
|
77 | eaclocal() { |
|
|
78 | local aclocal_opts |
|
|
79 | |
|
|
80 | # XXX: M4DIR should be depreciated |
|
|
81 | AT_M4DIR=${AT_M4DIR:-${M4DIR}} |
|
|
82 | |
|
|
83 | if [[ -n ${AT_M4DIR} ]] ; then |
|
|
84 | for x in ${AT_M4DIR} ; do |
|
|
85 | case "${x}" in |
|
|
86 | "-I") |
|
|
87 | # We handle it below |
|
|
88 | ;; |
|
|
89 | "-I"*) |
|
|
90 | # Invalid syntax, but maybe we should help out ... |
|
|
91 | ewarn "eaclocal: Proper syntax is (note the space after '-I'): aclocal -I <dir>" |
|
|
92 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
93 | ;; |
|
|
94 | *) |
|
|
95 | [[ ! -d ${x} ]] && ewarn "eaclocal: '${x}' does not exist" |
|
|
96 | aclocal_opts="${aclocal_opts} -I ${x}" |
|
|
97 | ;; |
|
|
98 | esac |
|
|
99 | done |
|
|
100 | fi |
|
|
101 | |
|
|
102 | [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
|
|
103 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
|
|
104 | } |
|
|
105 | |
|
|
106 | _elibtoolize() { |
|
|
107 | local opts |
|
|
108 | |
|
|
109 | # Check if we should run libtoolize |
|
|
110 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
|
|
111 | |
|
|
112 | [[ -f Makefile.am ]] && opts="--automake" |
|
|
113 | |
|
|
114 | [[ "${USERLAND}" == "Darwin" ]] && LIBTOOLIZE="glibtoolize" |
|
|
115 | autotools_run_tool ${LIBTOOLIZE:-libtoolize} "$@" ${opts} |
|
|
116 | |
|
|
117 | # Need to rerun aclocal |
|
|
118 | eaclocal |
|
|
119 | } |
|
|
120 | |
|
|
121 | eautoheader() { |
|
|
122 | # Check if we should run autoheader |
|
|
123 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
124 | autotools_run_tool autoheader "$@" |
|
|
125 | } |
|
|
126 | |
|
|
127 | eautoconf() { |
|
|
128 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
|
|
129 | echo |
|
|
130 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
|
|
131 | echo |
|
|
132 | die "No configure.{ac,in} present!" |
|
|
133 | fi |
|
|
134 | |
|
|
135 | autotools_run_tool autoconf "$@" |
|
|
136 | } |
|
|
137 | |
|
|
138 | eautomake() { |
|
|
139 | [[ -f Makefile.am ]] || return 0 |
|
|
140 | # --force-missing seems not to be recognized by some flavours of automake |
|
|
141 | autotools_run_tool automake --add-missing --copy "$@" |
|
|
142 | } |
|
|
143 | |
|
|
144 | |
| 20 | |
145 | |
| 21 | # Internal function to run an autotools' tool |
146 | # Internal function to run an autotools' tool |
| 22 | autotools_run_tool() { |
147 | autotools_run_tool() { |
| 23 | local STDERR_TARGET="${T}/$$.out" |
148 | local STDERR_TARGET="${T}/$$.out" |
| 24 | local PATCH_TARGET="${T}/$$.patch" |
149 | local PATCH_TARGET="${T}/$$.patch" |
| … | |
… | |
| 52 | } |
177 | } |
| 53 | |
178 | |
| 54 | # Internal function to get additional subdirs to configure |
179 | # Internal function to get additional subdirs to configure |
| 55 | autotools_get_subdirs() { |
180 | autotools_get_subdirs() { |
| 56 | local subdirs_scan_out |
181 | local subdirs_scan_out |
| 57 | |
182 | |
| 58 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
183 | subdirs_scan_out=$(autotools_check_macro "AC_CONFIG_SUBDIRS") |
| 59 | [[ -n ${subdirs_scan_out} ]] || return 0 |
184 | [[ -n ${subdirs_scan_out} ]] || return 0 |
| 60 | |
185 | |
| 61 | echo "${subdirs_scan_out}" | gawk \ |
186 | echo "${subdirs_scan_out}" | gawk \ |
| 62 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
187 | '($0 !~ /^[[:space:]]*(#|dnl)/) { |
| 63 | if (match($0, "AC_CONFIG_SUBDIRS\\(\\[?([^\\])]*)", res)) { |
188 | if (match($0, "AC_CONFIG_SUBDIRS\\(\\[?([^\\])]*)", res)) { |
| 64 | split(res[1], DIRS, /[\])]/) |
189 | split(res[1], DIRS, /[\])]/) |
| 65 | print DIRS[1] |
190 | print DIRS[1] |
| … | |
… | |
| 67 | }' | uniq |
192 | }' | uniq |
| 68 | |
193 | |
| 69 | return 0 |
194 | return 0 |
| 70 | } |
195 | } |
| 71 | |
196 | |
| 72 | |
|
|
| 73 | |
|
|
| 74 | # These functions runs the autotools using autotools_run_tool with the |
|
|
| 75 | # specified parametes. The name of the tool run is the same of the function |
|
|
| 76 | # without e prefix. |
|
|
| 77 | # They also force installing the support files for safety. |
|
|
| 78 | eaclocal() { |
|
|
| 79 | local aclocal_opts |
|
|
| 80 | |
|
|
| 81 | [[ -n ${M4DIR} ]] && aclocal_opts="-I ${M4DIR}" |
|
|
| 82 | |
|
|
| 83 | [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ |
|
|
| 84 | autotools_run_tool aclocal "$@" ${aclocal_opts} |
|
|
| 85 | } |
|
|
| 86 | |
|
|
| 87 | _elibtoolize() { |
|
|
| 88 | # Check if we should run libtoolize |
|
|
| 89 | [[ -n $(autotools_check_macro "AC_PROG_LIBTOOL") ]] || return 0 |
|
|
| 90 | autotools_run_tool libtoolize "$@" |
|
|
| 91 | |
|
|
| 92 | # Need to rerun aclocal |
|
|
| 93 | eaclocal |
|
|
| 94 | } |
|
|
| 95 | |
|
|
| 96 | eautoheader() { |
|
|
| 97 | # Check if we should run autoheader |
|
|
| 98 | [[ -n $(autotools_check_macro "AC_CONFIG_HEADERS") ]] || return 0 |
|
|
| 99 | autotools_run_tool autoheader "$@" |
|
|
| 100 | } |
|
|
| 101 | |
|
|
| 102 | eautoconf() { |
|
|
| 103 | if [[ ! -f configure.ac && ! -f configure.in ]] ; then |
|
|
| 104 | echo |
|
|
| 105 | eerror "No configure.{ac,in} present in '$(pwd | sed -e 's:.*/::')'!" |
|
|
| 106 | echo |
|
|
| 107 | die "No configure.{ac,in} present!" |
|
|
| 108 | fi |
|
|
| 109 | |
|
|
| 110 | autotools_run_tool autoconf "$@" |
|
|
| 111 | } |
|
|
| 112 | |
|
|
| 113 | eautomake() { |
|
|
| 114 | [[ -f Makefile.am ]] || return 0 |
|
|
| 115 | autotools_run_tool automake --add-missing --force-missing --copy "$@" |
|
|
| 116 | } |
|
|
| 117 | |
|
|
| 118 | # This function mimes the behavior of autoreconf, but uses the different |
|
|
| 119 | # eauto* functions to run the tools. It doesn't accept parameters, but |
|
|
| 120 | # the directory with include files can be specified with M4DIR variable. |
|
|
| 121 | # |
|
|
| 122 | # Note: doesn't run autopoint right now, but runs gnuconfig_update. |
|
|
| 123 | eautoreconf() { |
|
|
| 124 | local pwd=$(pwd) x |
|
|
| 125 | |
|
|
| 126 | # Take care of subdirs |
|
|
| 127 | for x in $(autotools_get_subdirs); do |
|
|
| 128 | if [[ -d ${x} ]] ; then |
|
|
| 129 | cd "${x}" |
|
|
| 130 | eautoreconf |
|
|
| 131 | cd "${pwd}" |
|
|
| 132 | fi |
|
|
| 133 | done |
|
|
| 134 | |
|
|
| 135 | eaclocal |
|
|
| 136 | _elibtoolize --copy --force |
|
|
| 137 | eautoconf |
|
|
| 138 | eautoheader |
|
|
| 139 | eautomake |
|
|
| 140 | gnuconfig_update |
|
|
| 141 | } |
|
|