perl-db.spec 4.2 KB

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