]> git.pld-linux.org Git - packages/rpm.git/blob - rpm.macros
- added "unset LINGUAS" in %configure macro before run ./configure.
[packages/rpm.git] / rpm.macros
1 # arch macro for Intel i?86 compatibile processors
2 %ix86   i386 i486 i586 i686 i786 i886 i986
3
4 #------------------------------------------------------------------------------
5 # The GNUconfigure macro does the following:
6 #       update config.guess and config.sub.
7 #       regenerate all autoconf/automake files
8 #       optionally change to a directory (make the directory if requested).
9 #       run configure with correct prefix, platform, and CFLAGS.
10 #       optionally restore current directory.
11 #
12 # Based on autogen.sh from GNOME and orginal GNUconfigure
13 #
14 %GNUconfigure(MCs:)      \
15   CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS; \
16   LDFLAGS="${LDFLAGS:-'%{-s:-s}'}"  ; export LDFLAGS; \
17   %{-C:_mydir="`pwd`"; %{-M: %{__mkdir} -p %{-C*};} cd %{-C*}} \
18   dirs="`find ${_mydir} -name configure.in -print`"; export dirs; \
19     for coin in `echo ${dirs}` \
20 do \
21   dr=`dirname ${coin}`; \
22 if test -f ${dr}/NO-AUTO-GEN; then \
23  : \
24 else \
25      macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < ${coin}`; \
26     ( cd ${dr}; \
27       aclocalinclude="${ACLOCAL_FLAGS}"; \
28       for k in ${macrodirs}; do \
29         if test -d ${k}; then \
30           aclocalinclude="${aclocalinclude} -I ${k}"; \
31         ##else \
32         ##  echo "**Warning**: No such directory \`${k}'.  Ignored." \
33         fi \
34       done \
35       if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then \
36         if grep "sed.*POTFILES" configure.in >/dev/null; then \
37           : do nothing -- we still have an old unmodified configure.in \
38         else \
39           test -r ${dr}/aclocal.m4 || touch ${dr}/aclocal.m4; \
40           echo "no" | gettextize --force --copy; \
41           test -r ${dr}/aclocal.m4 && %{__chmod} u+w ${dr}/aclocal.m4; \
42         fi \
43       fi \
44       if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then \
45         %{__libtoolize} --force --copy; \
46       fi \
47       aclocal ${aclocalinclude}; \
48       if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then \
49         %{__autoheader}; \
50       fi \
51       echo "Running automake --gnu ${am_opt} ..."; \
52       %{__automake} --add-missing --gnu ${am_opt}; \
53       %{__autoconf}; \
54     ); \
55   fi \
56 done \
57   %{-C:${_mydir}}%{!-C:.}/configure %{_target_platform} --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} --datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} --infodir=%{_infodir} %* ; \
58   %{-C:cd ${_mydir}; unset _mydir}
59
60 #-----------------------------------------------------------------
61 %configure { CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
62  CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
63  FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
64  unset LINGUAS ; \
65  ./configure %{_target_platform} \
66         --prefix=%{_prefix} \
67         --exec-prefix=%{_exec_prefix} \
68         --bindir=%{_bindir} \
69         --sbindir=%{_sbindir} \
70         --sysconfdir=%{_sysconfdir} \
71         --datadir=%{_datadir} \
72         --includedir=%{_includedir} \
73         --libdir=%{_libdir} \
74         --libexecdir=%{_libexecdir} \
75         --localstatedir=%{_localstatedir} \
76         --sharedstatedir=%{_sharedstatedir} \
77         --mandir=%{_mandir} \
78         --infodir=%{_infodir} }
79
80 # Location of autoconf macros
81 %_aclocaldir    %(aclocal --print-ac-dir)
82
83 # Fixed location of top applink dir
84 %_applnkdir      /usr/X11R6/share/applnk
85
86 # Current date
87 %date           %(LC_ALL="C" date +"%a %b %d %Y")
88
89 # tmp directory
90 %tmpdir         %(echo "${TMPDIR:-/tmp}")
91
92 # Example files, programs, scripts...
93 %_examplesdir   /usr/src/examples
94
95 # Find-requires and directories excluded from auto-req
96 %_noautoreqdir          %{_defaultdocdir} %{_examplesdir}
97 %_noautoreqdep          %{nil}
98 #%__find_requires_pre   /usr/lib/rpm/find-requires-pre %{_noautoreqdir}
99 #%__find_requires_core  /usr/lib/rpm/find-requires
100 #%__find_requires_post  /usr/lib/rpm/find-requires-post
101 #%__find_requires       %{__find_requires_pre} | %{__find_requires_core} | %{__find_requires_post}
102
This page took 0.036779 seconds and 4 git commands to generate.