home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / rescue / usr / lib / rpm / macros < prev    next >
Text File  |  2006-11-29  |  46KB  |  1,394 lines

  1. #/*! \page config_macros Default configuration: /usr/lib/rpm/macros
  2. # \verbatim
  3. #
  4. # $Id: macros.in,v 1.154.2.6 2005/07/21 01:45:44 jbj Exp $
  5. #
  6. # This is a global RPM configuration file. All changes made here will
  7. # be lost when the rpm package is upgraded. Any per-system configuration
  8. # should be added to /etc/rpm/macros, while per-user configuration should
  9. # be added to ~/.rpmmacros.
  10. #
  11. #==============================================================================
  12. # Macro naming conventions (preliminary):
  13. #
  14. #    Macros that begin with an underscore are "local" in the sense that
  15. #    they (if used) will not be exported in rpm headers. Some macros
  16. #    that don't start with an underscore (but look like they should)
  17. #    are compatible with macros generated by rpm-2.5.x and will be made
  18. #    more consistent in a future release.
  19. #
  20.  
  21. #==============================================================================
  22. # ---- A macro that expands to nothing.
  23. #
  24. %nil            %{!?nil}
  25.  
  26. #==============================================================================
  27. # ---- filesystem macros.
  28. #
  29. %_usr            /usr
  30. %_usrsrc        %{_usr}/src
  31. %_var            /var
  32.  
  33. #==============================================================================
  34. # ---- Generally useful path macros.
  35. #
  36. %__awk            gawk
  37. %__bzip2        /usr/bin/bzip2
  38. %__cat            /bin/cat
  39. %__chgrp        /bin/chgrp
  40. %__chmod        /bin/chmod
  41. %__chown        /bin/chown
  42. %__cp            /bin/cp
  43. %__cpio            /usr/bin/cpio
  44. %__file            /usr/bin/file
  45. %__gpg            /usr/bin/gpg
  46. %__grep            /usr/bin/grep
  47. %__gzip            /usr/bin/gzip
  48. %__id            /usr/bin/id
  49. %__install        /usr/bin/install
  50. %__ln_s            ln -s
  51. %__make            /usr/bin/make
  52. %__mkdir        /bin/mkdir
  53. %__mkdir_p        /bin/mkdir -p
  54. %__mv            /bin/mv
  55. %__patch        /usr/bin/patch
  56. %__perl            /usr/bin/perl
  57. %__pgp            /usr/bin/pgp
  58. %__python        /usr/bin/python
  59. %__rm            /bin/rm
  60. %__rsh            /usr/bin/rsh
  61. %__sed            /usr/bin/sed
  62. %__ssh            /usr/bin/ssh
  63. %__tar            /bin/tar
  64. %__unzip        /usr/bin/unzip
  65.  
  66. #==============================================================================
  67. # ---- Build system path macros.
  68. #
  69. %__ar            ar
  70. %__as            as
  71. %__cc            gcc
  72. %__cpp            gcc -E
  73. %__cxx            g++
  74. %__ld            /usr/bin/ld
  75. %__nm            /usr/bin/nm
  76. %__objcopy        /usr/bin/objcopy
  77. %__objdump        /usr/bin/objdump
  78. %__ranlib        ranlib
  79. %__remsh        %{__rsh}
  80. %__strip        /usr/bin/strip
  81.  
  82. # XXX avoid failures if tools are not installed when rpm is built.
  83. %__libtoolize        libtoolize
  84. %__aclocal        aclocal
  85. %__autoheader        autoheader
  86. %__automake        automake
  87. %__autoconf        autoconf
  88.  
  89. #==============================================================================
  90. # Conditional build stuff.
  91.  
  92. # Check if symbol is defined.
  93. # Example usage: %if %{defined with_foo} && %{undefined with_bar} ...
  94. %defined()    %{expand:%%{?%{1}:1}%%{!?%{1}:0}}
  95. %undefined()    %{expand:%%{?%{1}:0}%%{!?%{1}:1}}
  96.  
  97. # Shorthand for %{defined with_...}
  98. %with()        %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
  99. %without()    %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
  100.  
  101. # Handle conditional builds. %bcond_with is for case when feature is
  102. # default off and needs to be activated with --with ... command line
  103. # switch. %bcond_without is for the dual case.
  104. #
  105. # %bcond_with foo defines symbol with_foo if --with foo was specified on
  106. # command line.
  107. # %bcond_without foo defines symbol with_foo if --without foo was *not*
  108. # specified on command line.
  109. #
  110. # For example (spec file):
  111. #
  112. # (at the beginning)
  113. # %bcond_with extra_fonts
  114. # %bcond_without static
  115. # (and later)
  116. # %if %{with extra_fonts}
  117. # ...
  118. # %else
  119. # ...
  120. # %endif
  121. # %if ! %{with static}
  122. # ...
  123. # %endif
  124. # %ifdef %{with static}
  125. # ...
  126. # %endif
  127. # %{?with_static: ... }
  128. # %{!?with_static: ... }
  129. # %{?with_extra_fonts: ... }
  130. # %{!?with_extra_fonts: ... }
  131.  
  132. #
  133. # The bottom line: never use without_foo, _with_foo nor _without_foo, only
  134. # with_foo. This way changing default set of bconds for given spec is just
  135. # a matter of changing single line in it and syntax is more readable.
  136. %bcond_with()        %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
  137. %bcond_without()    %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
  138. #
  139. #==============================================================================
  140. # ---- Required rpmrc macros.
  141. #    Macros that used to be initialized as a side effect of rpmrc parsing.
  142. #    These are the default values that can be overridden by other
  143. #    (e.g. per-platform, per-system, per-packager, per-package) macros.
  144. #
  145. #    The directory where sources/patches will be unpacked and built.
  146. %_builddir        %{_topdir}/BUILD
  147.  
  148. #    The interpreter used for build scriptlets.
  149. %_buildshell        /bin/sh
  150.  
  151. #    The path to the bzip2 executable (legacy, use %{__bzip2} instead).
  152. %_bzip2bin        %{__bzip2}
  153.  
  154. #    The location of the rpm database file(s).
  155. %_dbpath        %{_var}/lib/rpm
  156.  
  157. #    The location of the rpm database file(s) after "rpm --rebuilddb".
  158. %_dbpath_rebuild    %{_dbpath}
  159.  
  160. #
  161. #    Path to script that creates debug symbols in a /usr/lib/debug
  162. #    shadow tree.
  163. %__debug_install_post   \
  164.    /usr/lib/rpm/find-debuginfo.sh %{_builddir}/%{?buildsubdir}\
  165. %{nil}
  166.  
  167. #    Template for debug information sub-package.
  168. %debug_package \
  169. %global __debug_package 1\
  170. %package debuginfo\
  171. Summary: Debug information for package %{name}\
  172. Group: Development/Debug\
  173. AutoReqProv: 0\
  174. Requires: %{name} = %{version}-%{release}\
  175. %description debuginfo\
  176. This package provides debug information for package %{name}.\
  177. Debug information is useful when developing applications that use this\
  178. package or when debugging this package.\
  179. %files debuginfo -f debugfiles.list\
  180. %defattr(-,root,root)\
  181. %{nil}
  182.  
  183. %_defaultdocdir        %{_usr}/doc/packages
  184. %_docdir_fmt        %%{NAME}
  185.  
  186. #    The path to the gzip executable (legacy, use %{__gzip} instead).
  187. %_gzipbin        %{__gzip}
  188.  
  189. #    The number of changelog entries kept when installing (legacy, unused in
  190. #    rpm-4.0.1 and later).
  191. %_instchangelog        5
  192.  
  193. #    The path to the pgp executable (legacy, use %{__pgp} instead).
  194. %_pgpbin        %{__pgp}
  195.  
  196. #    The directory where newly built binary packages will be written.
  197. %_rpmdir        %{_topdir}/RPMS
  198.  
  199. #    A template used to generate the output binary package file name
  200. #    (legacy).
  201. %_rpmfilename        %{_build_name_fmt}
  202.  
  203. #    The default signature type.
  204. %_signature        none
  205.  
  206. #    The directory where sources/patches from a source package will be
  207. #    installed. This is also where sources/patches are found when building.
  208. %_sourcedir        %{_topdir}/SOURCES
  209.  
  210. #    The directory where the spec file from a source package will be
  211. #    installed.
  212. %_specdir        %{_topdir}/SPECS
  213.  
  214. #    The directory where newly built source packages will be written.
  215. %_srcrpmdir        %{_topdir}/SRPMS
  216.  
  217. #    Directory where temporaray files can be created.
  218. %_tmppath        %{_var}/tmp
  219.  
  220. #    Path to top of build area.
  221. %_topdir        %{_usrsrc}/packages
  222.  
  223. #    The path to the unzip executable (legacy, use %{__unzip} instead).
  224. %_unzipbin        %{__unzip}
  225.  
  226. #==============================================================================
  227. # ---- Optional rpmrc macros.
  228. #    Macros that are initialized as a side effect of rpmrc and/or spec
  229. #    file parsing.
  230. #
  231. #    Configurable build root path, same as BuildRoot: in a specfile.
  232. #    (Note: the configured macro value will override the spec file value).
  233. #
  234. #%buildroot
  235.  
  236. #    The sub-directory (relative to %{_builddir}) where sources are compiled.
  237. #    This macro is set after processing %setup, either explicitly from the
  238. #    value given to -n or the default name-version.
  239. #
  240. #%buildsubdir
  241.  
  242. #    Configurable distribution information, same as Distribution: tag in a
  243. #    specfile.
  244. #
  245. #%distribution
  246.  
  247. #    Configurable distribution URL, same as DistURL: tag in a specfile.
  248. #    The URL will be used to supply reliable information to tools like
  249. #    rpmfind.
  250. #
  251. # Note: You should not configure with disturl (or build packages with
  252. # the DistURL: tag) unless you are willing to supply content in a
  253. # yet-to-be-determined format at the URL specified.
  254. #
  255. #%disturl
  256.  
  257. #    Boolean (i.e. 1 == "yes", 0 == "no") that controls whether files
  258. #    marked as %doc should be installed.
  259. #%_excludedocs
  260.  
  261. #    The port and machine name of a FTP proxy host running TIS firewall.
  262. #
  263. #%_ftpport
  264. #%_ftpproxy
  265.  
  266. #    The signature to use and the location of configuration files for
  267. #    signing packages with GNU gpg.
  268. #
  269. #%_gpg_name
  270. #%_gpg_path
  271.  
  272. #    The port and machine name of an HTTP proxy host.
  273. #
  274. #%_httpport
  275. #%_httpproxy
  276.  
  277. #    The PATH put into the environment before running %pre/%post et al.
  278. #
  279. %_install_script_path    /sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin
  280.  
  281. #    A colon separated list of desired locales to be installed;
  282. #    "all" means install all locale specific files.
  283. #    
  284. %_install_langs    all
  285.  
  286. #    The value of CLASSPATH in build scriptlets (iff configured).
  287. #    
  288. #%_javaclasspath    all
  289.  
  290. #    Import packaging conventions from jpackage.org (prefixed with _
  291. #    to avoid name collisions).
  292. #    
  293. %_javadir      %{_datadir}/java
  294. %_javadocdir   %{_datadir}/javadoc
  295.  
  296. #
  297. #    Deprecated.
  298. #
  299. #%_langpatt
  300.  
  301. #    A colon separated list of paths where files should *not* be installed.
  302. #    Usually, these are network file system mount points.
  303. #
  304. #%_netsharedpath
  305.  
  306. #    (experimental)
  307. #    The type of pattern match used on rpmdb iterator selectors:
  308. #    "default"    simple glob-like regex, periods will be escaped,
  309. #            splats will have period prepended, full "^...$" match
  310. #            required. Also, file path tags will use glob(7).
  311. #    "strcmp"    compare strings
  312. #    "regex"        regex(7) patterns using regcomp(3)/regexec(3)
  313. #    "glob"        glob(7) patterns using fnmatch(3)
  314. #
  315. %_query_selector_match    default
  316.  
  317. #    Configurable packager information, same as Packager: in a specfile.
  318. #
  319. #%packager
  320.  
  321. #    Compression type and level for source/binary package payloads.
  322. #        "w9.gzdio"    gzip level 9 (default).
  323. #        "w9.bzdio"    bzip2 level 9.
  324. #
  325. #%_source_payload    w9.gzdio
  326. %_binary_payload    w9.bzdio
  327.  
  328. #    The signature to use and the location of configuration files for
  329. #    signing packages with PGP.
  330. #
  331. #%_pgp_name
  332. #%_pgp_path
  333.  
  334. #    Configurable vendor information, same as Vendor: in a specfile.
  335. #
  336. #%vendor
  337.  
  338. #==============================================================================
  339. # ---- Build configuration macros.
  340. #
  341. # Package version macro.
  342. #    The type of package to produce, for compatibility with legacy
  343. #    versions of rpm.
  344. #
  345. # This is an rpm version, e.g. 30005 means to produce packaging compatible
  346. # with rpm-3.0.5. At the moment, values < 30005 (i.e. compatibility with
  347. # version before rpm-3.0.5) are not supported. The only incompatible change
  348. # in rpm packaging since rpm-3.0.5 has been to replace a 3 with a 4 in the
  349. # rpmlead, so there's little need to use any value greater than 30005.
  350. #
  351. %_package_version    30005
  352.  
  353. #
  354. # Script gets packaged file list on input and buildroot as first parameter.
  355. # Returns list of unpackaged files, i.e. files in $RPM_BUILD_ROOT not packaged.
  356. #
  357. # Note: Disable (by commenting out) for legacy compatibility.
  358. %__check_files         /usr/lib/rpm/check-files %{buildroot}
  359.  
  360. #
  361. # Should unpackaged files in a build root terminate a build?
  362. #
  363. # Note: The default value should be 0 for legacy compatibility.
  364. %_unpackaged_files_terminate_build    1
  365.  
  366. #
  367. # Should missing %doc files in the build directory terminate a build?
  368. #
  369. # Note: The default value should be 0 for legacy compatibility.
  370. %_missing_doc_files_terminate_build    1
  371.  
  372. #
  373. # Use internal dependency generator rather than external helpers?
  374. %_use_internal_dependency_generator    0
  375.  
  376. #
  377. # Filter GLIBC_PRIVATE Provides: and Requires:
  378. %_filter_GLIBC_PRIVATE            0
  379.  
  380. # Desired selinux policy tree
  381. %__policy_tree    %{expand:%%global __policy_tree %{lua:\
  382. t="targeted"\
  383. f = io.open("/etc/selinux/config")\
  384. if f then\
  385.   for l in f:lines() do\
  386.     if "SELINUXTYPE=" == string.sub(l,0,12) then t=string.sub(l,13); end\
  387.   end\
  388.   f:close()\
  389. end\
  390. print (t)\
  391. }}%{__policy_tree}
  392.  
  393. # Path to selinux file context patterns.
  394. %__file_context_path /etc/selinux/%{__policy_tree}/contexts/files/file_contexts
  395.  
  396. #
  397. # Path to selinux file context patterns used to add
  398. # RPMTAG_FILECONTEXTS to packages when building.
  399. #
  400. # Undefined, missing or %{nil} will disable.
  401. %_build_file_context_path    %{nil}
  402.  
  403. #
  404. # Path to selinux file context patterns used to set
  405. # (or override package content) file contexts when installing.
  406. #
  407. # Undefined, missing or %{nil} will use package content (if available).
  408. %_install_file_context_path     %{__file_context_path}
  409.  
  410. #
  411. # Path to selinux file context patterns used to verify
  412. # file contexts on file system.
  413. #
  414. # Undefined, missing or %{nil} will use package content (if available).
  415. %_verify_file_context_path     %{__file_context_path}
  416.  
  417. #
  418. # Path to scripts to autogenerate package dependencies,
  419. #
  420. # Note: Used iff _use_internal_dependency_generator is zero.
  421. #%__find_provides    /usr/lib/rpm/rpmdeps --provides
  422. #%__find_requires    /usr/lib/rpm/rpmdeps --requires
  423. %__find_provides    /usr/lib/rpm/find-provides %name
  424. %__find_requires    /usr/lib/rpm/find-requires %name
  425. #%__find_conflicts    ???
  426. #%__find_obsoletes    ???
  427. %__find_supplements    /usr/lib/rpm/find-supplements %name
  428. #%__find_enhances    ???
  429.  
  430. #
  431. # Path to scripts to autogenerate per-interpreter package dependencies,
  432. #
  433. # Note: Used iff _use_internal_dependency_generator is non-zero. The
  434. # helpers are also used by /usr/lib/rpm/rpmdeps {--provides|--requires}.
  435. #%__perl_provides    /usr/lib/rpm/perldeps.pl --provides
  436. #%__perl_requires    /usr/lib/rpm/perldeps.pl --requires
  437. %__perl_provides    /usr/lib/rpm/perl.prov
  438. %__perl_requires    /usr/lib/rpm/perl.req
  439.  
  440. %__python_provides    /usr/lib/rpm/pythondeps.sh --provides
  441. %__python_requires    /usr/lib/rpm/pythondeps.sh --requires
  442.  
  443. #
  444. # fixowner, fixgroup, and fixperms are run at the end of hardcoded setup
  445. # These macros are necessary only for legacy compatibility, and have moved
  446. # to per-platform macro configuration (i.e. /usr/lib/rpm/<arch>-<os>/macros)
  447. #
  448. # Note: These are no longer enabled by default.
  449. #%__id_u        %{__id} -u
  450. #%__chown_Rhf        %{__chown} -Rhf
  451. #%__chgrp_Rhf        %{__chgrp} -Rhf
  452. #%_fixowner        [ `%{__id_u}` = '0' ] && %{__chown_Rhf} root
  453. #%_fixgroup        [ `%{__id_u}` = '0' ] && %{__chgrp_Rhf} root
  454. #%_fixperms        %{__chmod} -Rf a+rX,u+w,g-w,o-w
  455. #
  456.  
  457. #==============================================================================
  458. # ---- Database configuration macros.
  459. #    Macros used to configure Berkley db parameters.
  460. #
  461. # rpmdb macro configuration values are a colon (or white space) separated
  462. # list of tokens, with an optional '!' negation to explicitly disable bit
  463. # values, or a "=value" if a parameter. A per-tag value is used (e.g.
  464. # %_dbi_config_Packages) if defined, otherwise a per-rpmdb default
  465. # (e.g. %_dbi_config). The configuration is also conditioned on the
  466. # existence of an internal %{_rpmdb_rebuild} switch to permit changing
  467. # the configuration while rebuilding an rpmdb database.
  468. #
  469. # The rpmdb configuration tokens are in a popt table in rpmdb/dbconfig.c,
  470. # see that for the latest gory details. Note carefully that, unless you
  471. # are writing an rpm installer, you shouldn't have to touch *any* of these
  472. # parameters.
  473. #
  474. # Here's a short list of the tokens, with a guess of whether the option is
  475. # useful:
  476. #    (nothing)    currently used in rpm, known to work.
  477. #    "+++"        under development, will be supported in rpm eventually.
  478. #    "???"        I have no clue, you're mostly on your own.
  479. #
  480. # If you do find yourself inclined to fiddle, here's what I see (shrug):
  481. # 1) Only the value of mp_size has any serious impact on overall performance,
  482. #    and you will need ~256Kb to handle a typical machine install.
  483. # 2) Only the Packages hash, because of the size of the values (i.e. headers),
  484. #    will ever need tuning. Diddle the pagesize if you're interested, although
  485. #    I believe that you will find pagesize=512 "best".
  486. # 3) Adding nofsync increases speed, but risks total data loss. Fiddle shared
  487. #    and/or mp_size instead.
  488. # 4) btree is faster than hash, but would require some painful rpm release
  489. #    engineering to convert everbody's databases to btree, not gonna happen
  490. #    soon.
  491. #
  492. # See the db3-devel package, or http://www.sleepycat.com for Berkeley db-3.x
  493. # documentation.
  494. #
  495. #   token    works?    Berkeley db flag or value
  496. #==================================================
  497. #---------------------- DBENV->open parameters and tunable values:
  498. #   mmapsize=16Mb    DBENV->set_mp_mmapsize
  499. #   cachesize=1Mb    DBENV->set_cachesize, DB->set_cachesize
  500. #---------------------- DBENV->open and DB->open common bits:
  501. #   create        DB_CREATE
  502. #   thread    ???    DB_THREAD    (useless w/o posix mutexes on linux)
  503. #---------------------- DBENV->open bits:
  504. #   joinenv        DB_JOIN_ENV
  505. #   mpool        DB_INIT_MPOOL
  506. #   cdb        +++    DB_INIT_CDB
  507. #   txn        ???    DB_INIT_TXN
  508. #   log        ???    DB_INIT_LOG
  509. #   lock    ???    DB_INIT_LOCK
  510. #   recover    ???    DB_RECOVER
  511. #   recover_fatal ???    DB_RECOVER_FATAL
  512. #   use_environ    ???    DB_USE_ENVIRON
  513. #   use_environ_root ??? DB_USE_ENVIRON_ROOT
  514. #   private    +++    DB_PRIVATE
  515. #   lockdown    ???    DB_LOCKDOWN
  516. #   shared    +++    DB_SYSTEM_MEM
  517. #---------------------- DB->open parameters and tunable values:
  518. #   pagesize=512 +++    DB->set_pagesize
  519. #---------------------- DB->open bits:
  520. #   excl    ???    DB_EXCL
  521. #   nommap    ???    DB_NOMMAP
  522. #   rdonly        DB_RDONLY
  523. #---------------------- DB->open types:
  524. #   btree        DB_BTREE
  525. #   hash        DB_HASH
  526. #   recno    ???    DB_RECNO
  527. #   queue    ???    DB_QUEUE
  528. #   unknown    +++    DB_UNKNOWN
  529. #---------------------- DB->set_flags bits:
  530. #   bt_dup    +++    (btree only) DB_DUP
  531. #   bt_dupsort    +++    (btree only) DB_DUPSORT
  532. #   ht_dup    +++    (hash only) DB_DUP
  533. #   ht_dupsort    +++    (hash only) DB_DUPSORT
  534. #----------------------- rpmdb specific configuration:
  535. #   usedbenv        (always on) Use db3 environment?
  536. #   verify        (db3 only) Verify Packages db after RW close?
  537. #   lockdbfd        (always on for Packages) Use fcntl(2) locking ?
  538. #   nofsync        Disable fsync(2) call performed after db3 writes?
  539. #   temporary        Unlink file when closing.
  540. #
  541.  
  542. # XXX Use transactions and logs for rpmdb durability (no clue yet):
  543. #%__dbi_other            create joinenv mpool txn log \
  544. #                mp_mmapsize=8Mb mp_size=512Kb
  545.  
  546. # Use a CDB database model for concurrent access.
  547. # XXX Add "private" here for legacy interoperation transiting to glibc+nptl.
  548. %__dbi_cdb            create cdb mpool mp_mmapsize=16Mb mp_size=1Mb
  549.  
  550. %__dbi_other            %{?_tmppath:tmpdir=%{_tmppath}} %{?__dbi_cdb}
  551.  
  552. # Note: adding nofsync here speeds up --rebuilddb a lot.
  553. %__dbi_rebuild            nofsync !log !txn !cdb
  554. %__dbi_transient        %{__dbi_rebuild} temporary private
  555. %__dbi_perms            perms=0644
  556.  
  557. #
  558. #--- Hash database configuration
  559. %__dbi_htconfig    \
  560.   hash        \
  561.   %{__dbi_other}\
  562.   %{__dbi_perms}\
  563. %{nil}
  564.  
  565. %__dbi_htconfig_current        %{__dbi_htconfig}
  566. %__dbi_htconfig_rebuild        %{__dbi_htconfig} %{__dbi_rebuild}
  567.  
  568. %_dbi_htconfig        \
  569.   %{?_rpmdb_rebuild:%{__dbi_htconfig_rebuild}}\
  570.   %{!?_rpmdb_rebuild:%{__dbi_htconfig_current}}\
  571. %{nil}
  572.  
  573. #
  574. #--- Btree database configuration
  575. %__dbi_btconfig    \
  576.   btree        \
  577.   %{__dbi_other}\
  578.   %{__dbi_perms}\
  579. %{nil}
  580.  
  581. %__dbi_btconfig_current        %{__dbi_btconfig}
  582. %__dbi_btconfig_rebuild        %{__dbi_btconfig} %{__dbi_rebuild}
  583.  
  584. %_dbi_btconfig        \
  585.   %{?_rpmdb_rebuild:%{__dbi_btconfig_rebuild}}\
  586.   %{!?_rpmdb_rebuild:%{__dbi_btconfig_current}}\
  587. %{nil}
  588.  
  589. # The list of tags for which indices will be built.
  590. %_dbi_tags    Packages:Name:Basenames:Group:Requirename:Providename:Conflictname:Triggername:Dirnames:Requireversion:Provideversion:Installtid:Sigmd5:Sha1header:Filemd5s:Depends:Pubkeys
  591.  
  592. # "Packages" should have shared/exclusive fcntl(2) lock using "lockdbfd".
  593. %_dbi_config_Packages        %{_dbi_htconfig} lockdbfd
  594.  
  595. # "Depends" is a per-transaction cache of known dependency resolutions.
  596. %_dbi_config_Depends        %{_dbi_htconfig} temporary private nofsync
  597.  
  598. %_dbi_config_Dirnames        %{_dbi_btconfig} nofsync
  599. %_dbi_config_Requireversion    %{_dbi_btconfig} nofsync
  600. %_dbi_config_Provideversion    %{_dbi_btconfig} nofsync
  601. %_dbi_config_Installtid        %{_dbi_btconfig} nofsync
  602. %_dbi_config_Removetid        %{_dbi_btconfig} nofsync
  603.  
  604. %_dbi_config    %{_dbi_htconfig} nofsync
  605.  
  606. # XXX legacy configuration.
  607. # Choose db interface:
  608. #    3    native db3 interface.
  609. #
  610. # There are two macros so that --rebuilddb can convert db1 -> db3.
  611. #
  612. %_dbapi            3
  613. %_dbapi_rebuild        3
  614.  
  615. #==============================================================================
  616. # ---- GPG/PGP/PGP5 signature macros.
  617. #    Macro(s) to hold the arguments passed to GPG/PGP for package
  618. #    signing and verification.
  619. #
  620. %__gpg_check_password_cmd    %{__gpg} \
  621.     gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so -
  622. %__pgp_check_password_cmd    %{__pgp} \
  623.     pgp +batchmode=on +verbose=0 "%{_pgp_name}" -sf
  624. %__pgp5_check_password_cmd    %{__pgp} \
  625.     pgps +batchmode=on +verbose=0 +armor=off "%{_pgp_name}" -f
  626.  
  627. %__gpg_sign_cmd            %{__gpg} \
  628.     gpg --batch --no-verbose --no-armor --passphrase-fd 3 --no-secmem-warning \
  629.     -u "%{_gpg_name}" -sbo %{__signature_filename} %{__plaintext_filename}
  630. %__pgp_sign_cmd            %{__pgp} \
  631.     pgp +batchmode=on +verbose=0 +armor=off \
  632.     "+myname=%{_pgp_name}" -sb %{__plaintext_filename} %{__signature_filename}
  633. %__pgp5_sign_cmd        %{__pgp} \
  634.     pgps +batchmode=on +verbose=0 +armor=off \
  635.     "+myname=%{_pgp_name}" -b %{__plaintext_filename} -o %{__signature_filename}
  636.  
  637. # XXX rpm-4.1 verifies signatures using beecrypt.
  638. #%__gpg_verify_cmd        %{__gpg} \
  639. #    gpg --batch --no-verbose --verify --no-secmem-warning \
  640. #    %{__signature_filename} %{__plaintext_filename}
  641. #%__pgp_verify_cmd        %{__pgp} \
  642. #    pgp +batchmode=on +verbose=0 \
  643. #    %{__signature_filename} %{__plaintext_filename}
  644. #%__pgp5_verify_cmd        %{__pgp} \
  645. #    pgpv +batchmode=on +verbose=0 \
  646. #    +OutputInformationFD=1 +OutputWarningFD=1 \
  647. #    -o %{__signature_filename} %{__plaintext_filename}
  648.  
  649. #
  650. # XXX rpm-4.1 verifies prelinked libraries using a prelink undo helper.
  651. #    Normally this macro is defined in /etc/rpm/macros.prelink, installed
  652. #    with the prelink package. If the macro is undefined, then prelinked
  653. #    shared libraries contents are MD5 digest verified (as usual), rather
  654. #    than MD5 verifying the output of the prelink undo helper.
  655. #
  656. #    Note: The 2nd token is used as argv[0] and "library" is a
  657. #    placeholder that will be deleted and replaced with the appropriate
  658. #    library file path.
  659. #%__prelink_undo_cmd     /usr/sbin/prelink prelink -y library
  660.  
  661. # Horowitz Key Protocol server configuration
  662. #
  663. #%_hkp_keyserver         hkp://pgp.mit.edu
  664. #%_hkp_keyserver_query   %{_hkp_keyserver}/pks/lookup?op=get&search=0x
  665.  
  666. #==============================================================================
  667. # ---- Transaction macros.
  668. #    Macro(s) used to parameterize transactions.
  669. #
  670. #    The output binary package file name template used when building
  671. #    binary packages.
  672. #
  673. # XXX    Note: escaped %% for use in headerSprintf()
  674. %_build_name_fmt    %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
  675.  
  676. #    The default transaction color. This value is a set of bits to
  677. #    determine file and dependency affinity for this arch.
  678. #        0    uncolored (i.e. use only arch as install hint)
  679. #        1    Elf32 permitted
  680. #        2    Elf64 permitted
  681. %_transaction_color    0
  682.  
  683. #    A default autorelocation path prefixed to file paths of packages
  684. #    that have an incompatible arch. This is used on ia64 to prefix
  685. #    /emul/ia32 to i386 file paths, and nowhere else (yet).
  686. #
  687. # XXX    Note: escaped %% for use in headerSprintf()
  688. %_autorelocate_path    %{nil}
  689.  
  690. #    A default directory color to choose when directories are
  691. #    auto-relocated.
  692. %_autorelocate_dcolor 0
  693.  
  694. #    The path to the dependency universe database. The default value
  695. #    is the rpmdb-redhat location. The macro is usually defined in
  696. #    /etc/rpm/macros.solve, installed with the rpmdb-redhat package.
  697. #%_solve_dbpath    /usr/lib/rpmdb/%{_arch}-%{_vendor}-%{_os}/redhat
  698.  
  699. #    The path to the dependency universe packages. This should
  700. #    be a path to the packages contained in the solve database.
  701. #%_solve_pkgsdir    /mnt/redhat/test/latest-i386/RedHat/RPMS/
  702.  
  703. #    The output binary package file name template used when suggesting
  704. #    binary packages that solve a dependency. The macro is usually defined
  705. #    in /etc/rpm/macros.solve, installed with the rpmdb-redhat package.
  706. #
  707. # XXX    Note: escaped %% for use in headerSprintf()
  708. #%_solve_name_fmt    %{?_solve_pkgsdir}%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
  709.  
  710. #    The output binary package file name template used when repackaging
  711. #    erased packages.
  712. #
  713. # XXX    Note: escaped %% for use in headerSprintf()
  714. %_repackage_name_fmt    %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
  715.  
  716. #    The directory in which erased packages will be saved when using
  717. #    the --repackage option.
  718. %_repackage_dir        /var/spool/repackage
  719.  
  720. #    A path (i.e. URL) prefix that is pre-pended to %{_repackage_dir}.
  721. %_repackage_root    %{nil}
  722.  
  723. #    If non-zero, all erasures will be automagically repackaged.
  724. %_repackage_all_erasures    0
  725.  
  726. # If non-zero, a failed transaction will be automagically rolled 
  727. # back (sans, the failing transaction element).
  728. %_rollback_transaction_on_failure    0
  729.  
  730. #    Verify digest/signature flags for various rpm modes:
  731. #    0x30300 (_RPMVSF_NODIGESTS)    --nohdrchk      if set, don't check digest(s)
  732. #    0xc0c00 (_RPMVSF_NOSIGNATURES) --nosignature   if set, don't check signature(s)
  733. #    0xf0000 (_RPMVSF_NOPAYLOAD)    --nolegacy      if set, check header+payload (if possible)
  734. #    0x00f00 (_RPMVSF_NOHEADER)     --nohdrchk      if set, don't check rpmdb headers
  735. #
  736. #    For example, the value 0xf0c00 (=0xf0000+0xc0c00) disables legacy
  737. #    digest/signature checking, disables signature checking, but attempts
  738. #    digest checking, also when retrieving headers from the database.
  739. #
  740. #    You also can do:
  741. #     >>> hex(rpm._RPMVSF_NOSIGNATURES)
  742. #     '0xc0c00'
  743. #    or:
  744. #     >>> hex(rpm._RPMVSF_NOSIGNATURES|rpm._RPMVSF_NOPAYLOAD)
  745. #     '0xf0c00'
  746. #    at the python prompt for example, after "import rpm".
  747. #
  748. #    The checking overhead is ~11ms per header for digests/signatures;
  749. #    each header from the database is checked only when first encountered
  750. #    for each database open.
  751. #
  752. #    Note: the %_vsflags_erase applies to --upgrade/--freshen modes as
  753. #    well as --erase.
  754. #
  755. %__vsflags        0xf0000
  756. %_vsflags_build        %{__vsflags}
  757. %_vsflags_erase        %{__vsflags}
  758. %_vsflags_install    %{__vsflags}
  759. %_vsflags_query        %{__vsflags}
  760. %_vsflags_rebuilddb    %{__vsflags}
  761. %_vsflags_up2date    %{__vsflags}
  762. %_vsflags_verify    %{__vsflags}
  763.  
  764. #    Relations between package names that cause dependency loops
  765. #    with legacy packages that cannot be fixed. Relations are
  766. #    specified as
  767. #        p>q
  768. #    where package p has a Requires: on something that package q Provides:
  769. #
  770. # XXX    Note: that there cannot be any whitespace within the string "p>q",
  771. #    and that both p and q are package names (i.e. no version/release).
  772.  
  773. #
  774. # Default headerSprintf() output format string for rpm -qa
  775. #
  776. # XXX    Note: escaped %% for use in headerSprintf()
  777. %_query_all_fmt        %%{name}-%%{version}-%%{release}
  778.  
  779. #
  780. # Default path to the file used for transaction fcmtl lock.
  781. #
  782. # The previous, FHS clompliant, name was /var/lock/run/transaction,
  783. # but the transaction lock needs to be per-database, not global, for
  784. # some rpmdb operations.
  785. #
  786. # XXX Note: the file name is chosesn as __db.000 to expedite
  787. # support issues, many users are doing "rm -f /var/lib/rpm/__db*"
  788. # these days.
  789. %_rpmlock_path    %{_dbpath}/__db.000
  790.  
  791. #==============================================================================
  792. # ---- Cache configuration macros.
  793. #    Macro(s) used to configure the universe of headers used to
  794. #    solve dependencies using rpmcache(8).
  795. #
  796. #    Note: These values are specific to my machine, and most certainly
  797. #    are incorrect for any non-redhat.com machine. The macros are
  798. #    included here only to document the macro names and usage.
  799. %_bhpath        file://localhost/mnt/dist
  800. %_bhcoll        @(7.3|7.2|7.1|7.1sbe|7.1k|7.0|7.01j|7.0j|7.0sbe|7.0tc|6.2|6.2ha|6.2ee|6.1|6.0|5.2|5.1|5.0)
  801. %_bhN           @(SRPMS|i386|alpha|sparc|s390|ia64)
  802. %_bhVR          RedHat
  803. %_bhA           RPMS
  804.  
  805. #    The cache database directory.
  806. %_cache_dbpath        /var/spool/up2date/cache
  807.  
  808. #==============================================================================
  809. # ---- per-platform macros.
  810. #    Macros that are specific to an individual platform. The values here
  811. #    will be used if the per-platform macro file does not exist..
  812. #
  813. %_arch            i386
  814. %_build_arch        i386
  815. %_vendor        suse
  816. %_os            linux
  817. %_gnu            -gnu
  818. %_target_platform    %{_target_cpu}-%{_vendor}-%{_target_os}%{?_gnu}
  819.  
  820. #
  821. # Define a generic value for optflags. Normally overridden by per-target macros.
  822. %optflags        -O2
  823.  
  824. #
  825. # Define per-arch and per-os defaults. Normally overridden by per-target macros.
  826. %__arch_install_post    %{nil}
  827. %__os_install_post    %{___build_post}
  828.  
  829. #==============================================================================
  830. # ---- Scriptlet template templates.
  831. #    Global defaults used for building scriptlet templates.
  832. #
  833.  
  834. %___build_shell        %{?_buildshell:%{_buildshell}}%{!?_buildshell:/bin/sh}
  835. %___build_args        -e
  836. %___build_cmd        %{?_sudo:%{_sudo} }%{?_remsh:%{_remsh} %{_remhost} }%{?_remsudo:%{_remsudo} }%{?_remchroot:%{_remchroot} %{_remroot} }%{___build_shell} %{___build_args}
  837. %___build_pre    \
  838.   RPM_SOURCE_DIR=\"%{u2p:%{_sourcedir}}\"\
  839.   RPM_BUILD_DIR=\"%{u2p:%{_builddir}}\"\
  840.   RPM_OPT_FLAGS=\"%{optflags}\"\
  841.   RPM_ARCH=\"%{_arch}\"\
  842.   RPM_OS=\"%{_os}\"\
  843.   export RPM_SOURCE_DIR RPM_BUILD_DIR RPM_OPT_FLAGS RPM_ARCH RPM_OS\
  844.   RPM_DOC_DIR=\"%{_docdir}\"\
  845.   export RPM_DOC_DIR\
  846.   RPM_PACKAGE_NAME=\"%{name}\"\
  847.   RPM_PACKAGE_VERSION=\"%{version}\"\
  848.   RPM_PACKAGE_RELEASE=\"%{release}\"\
  849.   export RPM_PACKAGE_NAME RPM_PACKAGE_VERSION RPM_PACKAGE_RELEASE\
  850.   %{?buildroot:RPM_BUILD_ROOT=\"%{u2p:%{buildroot}}\"\
  851.   export RPM_BUILD_ROOT}\
  852.   %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\
  853.   export CLASSPATH}\
  854.   \
  855.   %{verbose:set -x}%{!verbose:exec > /dev/null}\
  856.   umask 022\
  857.   cd %{u2p:%{_builddir}}\
  858.  
  859.  
  860. #%___build_body        %{nil}
  861. %___build_post        exit 0
  862.  
  863. %___build_template    #!%{___build_shell}\
  864. %{___build_pre}\
  865. %{nil}
  866.  
  867. #%{___build_body}\
  868. #%{___build_post}\
  869. #%{nil}
  870.  
  871. #==============================================================================
  872. # ---- Scriptlet templates.
  873. #    Macro(s) that expand to a command and script that is executed.
  874. #    CAVEAT: All macro expansions must fit in a BUFSIZ (8192 byte) buffer.
  875. #
  876. %__spec_prep_shell    %{___build_shell}
  877. %__spec_prep_args    %{___build_args}
  878. %__spec_prep_cmd    %{___build_cmd}
  879. %__spec_prep_pre    %{___build_pre}
  880. %__spec_prep_body    %{___build_body}
  881. %__spec_prep_post    %{___build_post}
  882. %__spec_prep_template    #!%{__spec_prep_shell}\
  883. %{__spec_prep_pre}\
  884. %{nil}
  885.  
  886. #%{__spec_prep_body}\
  887. #%{__spec_prep_post}\
  888. #%{nil}
  889.  
  890. %__spec_build_shell    %{___build_shell}
  891. %__spec_build_args    %{___build_args}
  892. %__spec_build_cmd    %{___build_cmd}
  893. %__spec_build_pre    %{___build_pre}
  894. %__spec_build_body    %{___build_body}
  895. %__spec_build_post    %{___build_post}
  896. %__spec_build_template    #!%{__spec_build_shell}\
  897. %{__spec_build_pre}\
  898. %{nil}
  899.  
  900. #%{__spec_build_body}\
  901. #%{__spec_build_post}\
  902. #%{nil}
  903.  
  904. %__spec_install_shell    %{___build_shell}
  905. %__spec_install_args    %{___build_args}
  906. %__spec_install_cmd    %{___build_cmd}
  907. %__spec_install_pre    %{___build_pre}
  908. %__spec_install_body    %{___build_body}
  909. %__spec_install_post\
  910. %{?__debug_package:%{__debug_install_post}}\
  911. %{__arch_install_post}\
  912. %{__os_install_post}\
  913. %{nil}
  914. %__spec_install_template    #!%{__spec_install_shell}\
  915. %{__spec_install_pre}\
  916. %{nil}
  917.  
  918. #%{__spec_install_body}\
  919. #%{__spec_install_post}\
  920. #%{nil}
  921.  
  922. %__spec_check_shell    %{___build_shell}
  923. %__spec_check_args    %{___build_args}
  924. %__spec_check_cmd    %{___build_cmd}
  925. %__spec_check_pre    %{___build_pre}
  926. %__spec_check_body    %{___build_body}
  927. %__spec_check_post    %{___build_post}
  928. %__spec_check_template    #!%{__spec_check_shell}\
  929. %{__spec_check_pre}\
  930. %{nil}
  931.  
  932. #%{__spec_check_body}\
  933. #%{__spec_check_post}\
  934. #%{nil}
  935.  
  936. #%__spec_autodep_shell    %{___build_shell}
  937. #%__spec_autodep_args    %{___build_args}
  938. #%__spec_autodep_cmd    %{___build_cmd}
  939. #%__spec_autodep_pre    %{___build_pre}
  940. #%__spec_autodep_body    %{___build_body}
  941. #%__spec_autodep_post    %{___build_post}
  942. #%__spec_autodep_template    #!%{__spec_autodep_shell}\
  943. #%{__spec_autodep_pre}\
  944. #%{nil}
  945.  
  946. #%{__spec_autodep_body}\
  947. #%{__spec_autodep_post}\
  948. #%{nil}
  949.  
  950. %__spec_clean_shell    %{___build_shell}
  951. %__spec_clean_args    %{___build_args}
  952. %__spec_clean_cmd    %{___build_cmd}
  953. %__spec_clean_pre    %{___build_pre}
  954. %__spec_clean_body    %{___build_body}
  955. %__spec_clean_post    %{___build_post}
  956. %__spec_clean_template    #!%{__spec_clean_shell}\
  957. %{__spec_clean_pre}\
  958. %{nil}
  959.  
  960. #%{__spec_clean_body}\
  961. #%{__spec_clean_post}\
  962. #%{nil}
  963.  
  964. %__spec_rmbuild_shell    %{___build_shell}
  965. %__spec_rmbuild_args    %{___build_args}
  966. %__spec_rmbuild_cmd    %{___build_cmd}
  967. %__spec_rmbuild_pre    %{___build_pre}
  968. %__spec_rmbuild_body    %{___build_body}
  969. %__spec_rmbuild_post    %{___build_post}
  970. %__spec_rmbuild_template    #!%{__spec_rmbuild_shell}\
  971. %{__spec_rmbuild_pre}\
  972. %{nil}
  973.  
  974. #%{__spec_rmbuild_body}\
  975. #%{__spec_rmbuild_post}\
  976. #%{nil}
  977.  
  978. # XXX We don't expand pre/post install scriptlets (yet).
  979. #%__spec_pre_pre        %{nil}
  980. #%__spec_pre_post        %{nil}
  981. #%__spec_post_pre        %{nil}
  982. #%__spec_post_post        %{nil}
  983. #%__spec_preun_pre        %{nil}
  984. #%__spec_preun_post        %{nil}
  985. #%__spec_postun_pre        %{nil}
  986. #%__spec_postun_post        %{nil}
  987. #%__spec_triggerpostun_pre    %{nil}
  988. #%__spec_triggerpostun_post    %{nil}
  989. #%__spec_triggerun_pre        %{nil}
  990. #%__spec_triggerun_post        %{nil}
  991. #%__spec_triggerin_pre        %{nil}
  992. #%__spec_triggerin_post        %{nil}
  993.  
  994. #==============================================================================
  995. # ---- configure macros.
  996. #    Macro(s) slavishly copied from autoconf's config.status.
  997. #
  998. %_prefix        /usr
  999. %_exec_prefix        %{_prefix}
  1000. %_bindir        %{_exec_prefix}/bin
  1001. %_sbindir        %{_exec_prefix}/sbin
  1002. %_libexecdir        %{_exec_prefix}/libexec
  1003. %_datadir        %{_prefix}/share
  1004. %_sysconfdir        %{_prefix}/etc
  1005. %_sharedstatedir    %{_prefix}/com
  1006. %_localstatedir        %{_prefix}/var
  1007. %_lib            lib
  1008. %_libdir        %{_exec_prefix}/%{_lib}
  1009. %_includedir        %{_prefix}/include
  1010. %_oldincludedir        /usr/include
  1011. %_infodir        %{_prefix}/info
  1012. %_mandir        %{_prefix}/man
  1013.  
  1014. #==============================================================================
  1015. # ---- config.guess platform macros.
  1016. #    Macro(s) similar to the tokens used by configure.
  1017. #
  1018. %_build            %{_host}
  1019. %_build_alias        %{_host_alias}
  1020. %_build_cpu        %{_host_cpu}
  1021. %_build_vendor        %{_host_vendor}
  1022. %_build_os        %{_host_os}
  1023. %_host            i686-suse-linux-gnu
  1024. %_host_alias        i686-suse-linux-gnu%{nil}
  1025. %_host_cpu        i686
  1026. %_host_vendor        suse
  1027. %_host_os        linux-gnu
  1028. %_target        %{_host}
  1029. %_target_alias        %{_host_alias}
  1030. %_target_cpu        %{_host_cpu}
  1031. %_target_vendor        %{_host_vendor}
  1032. %_target_os        %{_host_os}
  1033.  
  1034. #==============================================================================
  1035. # ---- specfile macros.
  1036. #    Macro(s) here can be used reliably for reproducible builds.
  1037. #    (Note: Above is the goal, below are the macros under development)
  1038. #
  1039. # The configure macro does the following:
  1040. #    optionally change to a subdirectory (not implemented).
  1041. #    attempt to update config.guess and config.sub.
  1042. #    run configure with correct prefix, platform, and CFLAGS.
  1043. #    optionally restore current directory (not implemented).
  1044. # The configure macro should be invoked as %configure (rather than %{configure})
  1045. # because the rest of the arguments will be expanded using %*.
  1046. #
  1047. # This is the version of %configure used through rpm-3.0.4.
  1048. #%configure    \
  1049. #  %{?__libtoolize:[ -f configure.in ] && %{__libtoolize} --copy --force} \
  1050. #  CFLAGS="%{optflags}" ./configure %{_target_platform} --prefix=%{_prefix}
  1051. #
  1052. #------------------------------------------------------------------------------
  1053. # This is an improved version of %configure (from PLD team).
  1054. %configure \
  1055.   CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
  1056.   CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
  1057.   FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
  1058.   ./configure --host=%{_host} --build=%{_build} \\\
  1059.     --target=%{_target_platform} \\\
  1060.     --program-prefix=%{?_program_prefix} \\\
  1061.      --prefix=%{_prefix} \\\
  1062.     --exec-prefix=%{_exec_prefix} \\\
  1063.     --bindir=%{_bindir} \\\
  1064.     --sbindir=%{_sbindir} \\\
  1065.     --sysconfdir=%{_sysconfdir} \\\
  1066.     --datadir=%{_datadir} \\\
  1067.     --includedir=%{_includedir} \\\
  1068.     --libdir=%{_libdir} \\\
  1069.     --libexecdir=%{_libexecdir} \\\
  1070.     --localstatedir=%{_localstatedir} \\\
  1071.     --sharedstatedir=%{_sharedstatedir} \\\
  1072.     --mandir=%{_mandir} \\\
  1073.     --infodir=%{_infodir}
  1074.  
  1075. #------------------------------------------------------------------------------
  1076. # The make install analogue of %configure:
  1077. %makeinstall \
  1078.   make \\\
  1079.     prefix=%{?buildroot:%{buildroot}}%{_prefix} \\\
  1080.     exec_prefix=%{?buildroot:%{buildroot}}%{_exec_prefix} \\\
  1081.     bindir=%{?buildroot:%{buildroot}}%{_bindir} \\\
  1082.     sbindir=%{?buildroot:%{buildroot}}%{_sbindir} \\\
  1083.     sysconfdir=%{?buildroot:%{buildroot}}%{_sysconfdir} \\\
  1084.     datadir=%{?buildroot:%{buildroot}}%{_datadir} \\\
  1085.     includedir=%{?buildroot:%{buildroot}}%{_includedir} \\\
  1086.     libdir=%{?buildroot:%{buildroot}}%{_libdir} \\\
  1087.     libexecdir=%{?buildroot:%{buildroot}}%{_libexecdir} \\\
  1088.     localstatedir=%{?buildroot:%{buildroot}}%{_localstatedir} \\\
  1089.     sharedstatedir=%{?buildroot:%{buildroot}}%{_sharedstatedir} \\\
  1090.     mandir=%{?buildroot:%{buildroot}}%{_mandir} \\\
  1091.     infodir=%{?buildroot:%{buildroot}}%{_infodir} \\\
  1092.   install
  1093.  
  1094. #------------------------------------------------------------------------------
  1095. # The GNUconfigure macro does the following:
  1096. #       update config.guess and config.sub.
  1097. #       regenerate all autoconf/automake files
  1098. #       optionally change to a directory (make the directory if requested).
  1099. #       run configure with correct prefix, platform, and CFLAGS.
  1100. #       optionally restore current directory.
  1101. #
  1102. # Based on autogen.sh from GNOME and orginal GNUconfigure
  1103. #
  1104. %GNUconfigure(MCs:)      \
  1105.   CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS; \
  1106.   LDFLAGS="${LDFLAGS:-%{-s:-s}}"  ; export LDFLAGS; \
  1107.   %{-C:_mydir="`pwd`"; %{-M: %{__mkdir} -p %{-C*};} cd %{-C*}} \
  1108.   dirs="`find ${_mydir} -name configure.in -print`"; export dirs; \
  1109.     for coin in `echo ${dirs}` \
  1110. do \
  1111.   dr=`dirname ${coin}`; \
  1112. if test -f ${dr}/NO-AUTO-GEN; then \
  1113.  : \
  1114. else \
  1115.      macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < ${coin}`; \
  1116.     ( cd ${dr}; \
  1117.       aclocalinclude="${ACLOCAL_FLAGS}"; \
  1118.       for k in ${macrodirs}; do \
  1119.         if test -d ${k}; then \
  1120.           aclocalinclude="${aclocalinclude} -I ${k}"; \
  1121.         ##else \
  1122.         ##  echo "**Warning**: No such directory \`${k}'.  Ignored." \
  1123.         fi \
  1124.       done \
  1125.       if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then \
  1126.         if grep "sed.*POTFILES" configure.in >/dev/null; then \
  1127.           : do nothing -- we still have an old unmodified configure.in \
  1128.         else \
  1129.           test -r ${dr}/aclocal.m4 || touch ${dr}/aclocal.m4; \
  1130.           echo "no" | gettextize --force --copy; \
  1131.           test -r ${dr}/aclocal.m4 && %{__chmod} u+w ${dr}/aclocal.m4; \
  1132.         fi \
  1133.       fi \
  1134.       if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then \
  1135.         %{__libtoolize} --force --copy; \
  1136.       fi \
  1137.       aclocal ${aclocalinclude}; \
  1138.       if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then \
  1139.         %{__autoheader}; \
  1140.       fi \
  1141.       echo "Running automake --gnu ${am_opt} ..."; \
  1142.       %{__automake} --add-missing --gnu ${am_opt}; \
  1143.       %{__autoconf}; \
  1144.     ); \
  1145.   fi \
  1146. done \
  1147.   %{-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} %* ; \
  1148.   %{-C:cd ${_mydir}; unset _mydir}
  1149.  
  1150. #------------------------------------------------------------------------------
  1151. # Useful perl macros (from Artur Frysiak <wiget@t17.ds.pwr.wroc.pl>)
  1152. #
  1153. # For example, these can be used as (from ImageMagick.spec from PLD site)
  1154. #    [...]
  1155. #    BuildPrereq: perl
  1156. #    [...]
  1157. #    %package perl
  1158. #    Summary: libraries and modules for access to ImageMagick from perl
  1159. #    Group: Development/Languages/Perl
  1160. #    Requires: %{name} = %{version}
  1161. #    %requires_eq    perl
  1162. #    [...]
  1163. #    %install
  1164. #    rm -fr $RPM_BUILD_ROOT
  1165. #    install -d $RPM_BUILD_ROOT/%{perl_sitearch}
  1166. #    [...]
  1167. #    %files perl
  1168. #    %defattr(644,root,root,755)
  1169. #    %{perl_sitearch}/Image
  1170. #    %dir %{perl_sitearch}/auto/Image
  1171. #
  1172. %requires_eq()    %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
  1173. %perl_sitearch    %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
  1174. %perl_sitelib    %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
  1175. %perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
  1176. %perl_vendorlib  %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
  1177. %perl_archlib    %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
  1178. %perl_privlib    %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
  1179.  
  1180. #------------------------------------------------------------------------------
  1181. # More useful perl macros (from Raul Dias <rsd@swi.com.br>)
  1182. #
  1183. %perl_version        %(perl -V:version | sed "s!.*='!!;s!'.*!!")
  1184. %perl_man1ext        %(perl -V:man1ext | sed "s!.*='!!;s!'.*!!")
  1185. %perl_man3ext        %(perl -V:man3ext | sed "s!.*='!!;s!'.*!!")
  1186. %perl_man1dir        %(perl -V:man1dir | sed "s!.*='!!;s!'.*!!")
  1187. %perl_man3dir        %(perl -V:man3dir | sed "s!.*='!!;s!'.*!!")
  1188. %perl_installman1dir    %(perl -V:installman1dir | sed "s!.*='!!;s!'.*!!")
  1189. %perl_installman3dir    %(perl -V:installman3dir | sed "s!.*='!!;s!'.*!!")
  1190. %perl_installarchlib    %(perl -V:installarchlib | sed "s!.*='!!;s!'.*!!")
  1191. %perl_prefix        %{buildroot}
  1192.  
  1193. #------------------------------------------------------------------------------
  1194. # Python specific macro definitions (originally from PLD).
  1195. #
  1196. %py_ver            %(python -c "import sys; v=sys.version_info[:2]; print '%%d.%%d'%%v" 2>/dev/null || echo PYTHON-NOT-FOUND)
  1197. %py_prefix        %(python -c "import sys; print sys.prefix" 2>/dev/null || echo PYTHON-NOT-FOUND)
  1198. %py_libdir        %{py_prefix}/%{_lib}/python%{py_ver}
  1199. %py_incdir        %{py_prefix}/include/python%{py_ver}
  1200. %py_sitedir        %{py_libdir}/site-packages
  1201. %py_compile(O)    \
  1202. find %1 -name '*.pyc' -exec rm -f {} \\; \
  1203. python -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 \
  1204. %{-O: \
  1205. find %1 -name '*.pyo' -exec rm -f {} \\; \
  1206. python -O -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 \
  1207. }
  1208. %py_requires(d) \
  1209. %define minver %py_ver \
  1210. %define maxver %(python -c "import sys; a,b=sys.version_info[:2]; print '%%d.%%d'%%(a,b+1)" 2>/dev/null || echo PYTHON-NOT-FOUND) \
  1211. BuildRequires: python %{-d:python-devel} \
  1212. PreReq: python >= %minver, python < %maxver
  1213.  
  1214. #------------------------------------------------------------------------------
  1215. #
  1216. # RPM macros for Java applications.
  1217. #
  1218. # JPackage Project  <http://www.jpackage.org/>
  1219. #   David Walluck   <david@anti-microsoft.org>
  1220. #   Ville SkyttΣ    <ville.skytta@iki.fi>
  1221. #   Nicolas Mailhot <Nicolas.Mailhot@laPoste.net>
  1222. #
  1223. # $Id: macros.jpackage,v 1.1.2.5 2003/08/30 13:24:58 scop Exp $
  1224. #
  1225.  
  1226. # ---- default Java directories
  1227.  
  1228. #
  1229. # Root directory where all Java VMs/SDK/JREs are installed.
  1230. #
  1231. %_jvmdir    %{_libdir}/jvm
  1232.  
  1233. #
  1234. # Root directory where all Java VMs/SDK/JREs expose their jars
  1235. #
  1236. %_jvmjardir    %{_libdir}/jvm-exports
  1237.  
  1238. #
  1239. # Root directory for all Java VM/SDK/JRE's private things.
  1240. #
  1241. %_jvmprivdir    %{_libdir}/jvm-private
  1242.  
  1243. #
  1244. # Directory where arch and version independent jars are installed.
  1245. # This has already been integrated in RH macros following our request.
  1246. #
  1247. # By extension:
  1248. # %{_javadir}-ext:
  1249. #   - version dependent jars
  1250. # %{_javadir}-x.y.z:
  1251. #   - jars for Java standard x.y.z (usually symlinks to  %{_javadir}-ext)
  1252. # %{_javadir}-utils:
  1253. #   - Java-related scripts
  1254. #
  1255. # To simplify things only %{_javadir} is defined.
  1256. #
  1257. %_javadir        %{_datadir}/java
  1258.  
  1259. #
  1260. # Directory where arch-specific (JNI) version-independent jars are installed.
  1261. #
  1262. # By extension:
  1263. # %{_jnidir}-ext:
  1264. #   - version dependent jars
  1265. # %{_jnidir}-x.y.z:
  1266. #   - jars for Java standard x.y.z (usually symlinks to  %{_jnidir}-ext)
  1267. # To simplify things only %{_jnidir} is defined.
  1268. #
  1269. %_jnidir        %{_libdir}/java
  1270.  
  1271. #
  1272. # Root directory where all javadoc is installed. Also already in RH macros.
  1273. #
  1274. %_javadocdir     %{_datadir}/javadoc
  1275.  
  1276. #
  1277. # Current default JVM home.
  1278. #
  1279. %java_home      %(. %{_javadir}-utils/java-functions; set_jvm; echo $JAVA_HOME)
  1280.  
  1281. # ---- default Java commands
  1282.  
  1283. %ant            JAVA_HOME=%{java_home} ant
  1284. %jar            %{java_home}/bin/jar
  1285. %java           %(. %{_javadir}-utils/java-functions; set_javacmd; echo $JAVACMD)
  1286. %javac          %{java_home}/bin/javac
  1287. %javadoc        %{java_home}/bin/javadoc
  1288.  
  1289. # ---- Java extension handling macros
  1290.  
  1291. #
  1292. # add_jvm_extension should be used in %install by extension packages to declare
  1293. # what extension jars they provide.
  1294. #
  1295. # For example a package that provides foo.jar which is the bar extension
  1296. # under java 1.2 and 1.3 should do a:
  1297. #
  1298. #   %install
  1299. #   ... # create foo.jar in %{javadir}-ext
  1300. #   %add_jvm_extension  foo bar 1.2 1.3
  1301. #
  1302. #   %files
  1303. #   %{javadir}-ext/foo.jar
  1304. #   %{javadir}-*/bar.jar
  1305. #
  1306. %add_jvm_extension JAVA_LIBDIR=%{buildroot}/%{_javadir}    %{_bindir}/jvmjar -l
  1307.  
  1308. #
  1309. # Standard JPackage script
  1310. #
  1311. # This is kind of tasteless and should be moved to an external template
  1312. #
  1313. # %1    main class
  1314. # %2    flags
  1315. # %3    options
  1316. # %4    jars (separated by ':')
  1317. # %5    the name of script you wish to create
  1318. #
  1319. %jpackage_script() \
  1320. install -d -m 755 $RPM_BUILD_ROOT%{_bindir}\
  1321. cat > $RPM_BUILD_ROOT%{_bindir}/%5 << EOF \
  1322. #!/bin/sh\
  1323. #\
  1324. # %{name} script\
  1325. # JPackage Project <http://www.jpackage.org/>\
  1326. \
  1327. # Source functions library\
  1328. . %{_javadir}-utils/java-functions\
  1329. \
  1330. # Source system prefs\
  1331. if [ -f %{_sysconfdir}/java/%{name}.conf ] ; then\
  1332.   . %{_sysconfdir}/java/%{name}.conf\
  1333. fi\
  1334. \
  1335. # Source user prefs\
  1336. if [ -f \\$HOME/.%{name}rc ] ; then\
  1337.   . \\$HOME/.%{name}rc\
  1338. fi\
  1339. \
  1340. # Configuration\
  1341. MAIN_CLASS=%1\
  1342. BASE_FLAGS=%2\
  1343. BASE_OPTIONS=%3\
  1344. BASE_JARS="%(echo %4 | sed -e 's,:, ,g')"\
  1345. \
  1346. # Set parameters\
  1347. set_jvm\
  1348. set_classpath \\$BASE_JARS\
  1349. set_flags \\$BASE_FLAGS\
  1350. set_options \\$BASE_OPTIONS\
  1351. \
  1352. # Let's start\
  1353. run "\\$@"\
  1354. EOF
  1355.  
  1356. #------------------------------------------------------------------------------
  1357. # arch macro for all Intel i?86 compatibile processors
  1358. #  (Note: This macro (and it's analogues) will probably be obsoleted when
  1359. #   rpm can use regular expressions against target platforms in macro
  1360. #   conditionals.
  1361. #
  1362. %ix86   i386 i486 i586 i686 pentium3 pentium4 athlon
  1363. %arm    armv4l armv4b armv5l armv5b armv5tel armv5teb
  1364. %arml    armv4l armv5l armv5tel
  1365. %armb    armv4b armv5b armv5teb
  1366.  
  1367. #------------------------------------------------------------------------
  1368. # Use in %install to generate locale specific file lists. For example,
  1369. #
  1370. # %install
  1371. # ...
  1372. # %find_lang %{name}
  1373. # ...
  1374. # %files -f %{name}.lang
  1375. #
  1376. %find_lang    /usr/lib/rpm/find-lang.sh %{buildroot}
  1377.  
  1378. # \endverbatim
  1379. #*/
  1380.  
  1381.  
  1382. #------------------------------------------------------------------------
  1383. # standard build service macros
  1384. #
  1385. %ext_info .gz
  1386. %ext_man .gz
  1387.  
  1388. %info_add() test -x /sbin/install-info -a -f %{?2}%{?!2:%{_infodir}}/%{1}%ext_info && /sbin/install-info --info-dir=%{?2}%{?!2:%{_infodir}} %{?2}%{?!2:%{_infodir}}/%{1}%ext_info \
  1389. %{nil}
  1390.  
  1391. %info_del() test -x /sbin/install-info -a ! -f %{?2}%{?!2:%{_infodir}}/%{1}%ext_info && /sbin/install-info --quiet --delete --info-dir=%{?2}%{?!2:%{_infodir}} %{?2}%{?!2:%{_infodir}}/%{1}%ext_info \
  1392. %{nil}
  1393.  
  1394.