perl-db.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. ##
  2. ## perl-db.spec -- OpenPKG RPM Specification
  3. ## Copyright (c) 2000-2004 The OpenPKG Project <http://www.openpkg.org/>
  4. ## Copyright (c) 2000-2004 Ralf S. Engelschall <rse@engelschall.com>
  5. ## Copyright (c) 2000-2004 Cable & Wireless <http://www.cw.com/>
  6. ##
  7. ## Permission to use, copy, modify, and distribute this software for
  8. ## any purpose with or without fee is hereby granted, provided that
  9. ## the above copyright notice and this permission notice appear in all
  10. ## copies.
  11. ##
  12. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  13. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  16. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  18. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  20. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  21. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  22. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. ## SUCH DAMAGE.
  24. ##
  25. # versions of individual parts
  26. %define V_perl 5.8.3
  27. %define V_berkeleydb 0.25
  28. %define V_db_file 1.808
  29. %define V_db_file_lock 0.05
  30. # package information
  31. Name: perl-db
  32. Summary: Perl Modules for use with Berkeley-DB
  33. URL: http://www.cpan.org/
  34. Vendor: Perl Community
  35. Packager: The OpenPKG Project
  36. Distribution: OpenPKG
  37. Class: BASE
  38. Group: Language
  39. License: GPL/Artistic
  40. Version: %{V_perl}
  41. Release: 20040218
  42. # list of sources
  43. Source0: http://www.cpan.org/modules/by-module/BerkeleyDB/BerkeleyDB-%{V_berkeleydb}.tar.gz
  44. Source1: http://www.cpan.org/modules/by-module/DB_File/DB_File-%{V_db_file}.tar.gz
  45. Source2: http://www.cpan.org/modules/by-module/DB_File/DB_File-Lock-%{V_db_file_lock}.tar.gz
  46. # build information
  47. Prefix: %{l_prefix}
  48. BuildRoot: %{l_buildroot}
  49. BuildPreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20040126, db >= 4.1.24
  50. PreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20040126, db >= 4.1.24
  51. AutoReq: no
  52. AutoReqProv: no
  53. %description
  54. Various modules for using the Berkeley-DB library from within Perl:
  55. - BerkeleyDB (%{V_berkeleydb})
  56. - DB_File (%{V_db_file})
  57. - DB_File::Lock (%{V_db_file_lock})
  58. %track
  59. prog perl-db:BerkeleyDB = {
  60. version = %{V_berkeleydb}
  61. url = http://www.cpan.org/modules/by-module/BerkeleyDB/
  62. regex = BerkeleyDB-(__VER__)\.tar\.gz
  63. }
  64. prog perl-db:DB_File = {
  65. version = %{V_db_file}
  66. url = http://www.cpan.org/modules/by-module/DB_File/
  67. regex = DB_File-(__VER__)\.tar\.gz
  68. }
  69. prog perl-db:DB_File-Lock = {
  70. version = %{V_db_file_lock}
  71. url = http://www.cpan.org/modules/by-module/DB_File/
  72. regex = DB_File-Lock-(__VER__)\.tar\.gz
  73. }
  74. %prep
  75. %setup -q -c
  76. %setup -q -T -D -a 1
  77. %setup -q -T -D -a 2
  78. %build
  79. %install
  80. %{l_prefix}/bin/perl-openpkg prepare
  81. # build BerkeleyDB
  82. ( cd BerkeleyDB-%{V_berkeleydb}
  83. ( echo "INCLUDE = %{l_prefix}/include"
  84. echo "LIB = %{l_prefix}/lib"
  85. ) >config.in
  86. ) || exit $?
  87. %{l_prefix}/bin/perl-openpkg -d BerkeleyDB-%{V_berkeleydb} configure build install
  88. # build DB_File
  89. ( cd DB_File-%{V_db_file}
  90. ( echo "PREFIX = size_t"
  91. echo "HASH = u_int32_t"
  92. echo "INCLUDE = %{l_prefix}/include"
  93. echo "LIB = %{l_prefix}/lib"
  94. ) >config.in
  95. %{l_shtool} subst -e "s;INSTALLDIRS => .perl.,;;" Makefile.PL
  96. ) || exit $?
  97. %{l_prefix}/bin/perl-openpkg -d DB_File-%{V_db_file} configure build install
  98. %{l_prefix}/bin/perl-openpkg -d %{SOURCE2} configure build install
  99. %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
  100. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files`
  101. %files -f files
  102. %clean
  103. rm -rf $RPM_BUILD_ROOT