Pārlūkot izejas kodu

upgrading package: openpkg 20040407 -> 20040408

Ralf S. Engelschall 21 gadi atpakaļ
vecāks
revīzija
d6e10d8bb6
3 mainītis faili ar 10 papildinājumiem un 4 dzēšanām
  1. 3 1
      openpkg/HISTORY
  2. 2 2
      openpkg/openpkg.sh
  3. 5 1
      openpkg/openpkg.spec

+ 3 - 1
openpkg/HISTORY

@@ -2,6 +2,8 @@
 2004
 ====
 
+20040408 fixed internal OPENPKG_TOOLS variable processing in <prefix>/bin/openpkg frontend
+20040408 added workaround to BeeCrypt build to make sure /dev/audio and /dev/dsp are not used
 20040407 upgraded to GNU shtool 2.0b2
 20040406 upgraded to GNU tar 1.13.94
 
@@ -10,7 +12,7 @@
 20040403 fix tracking of GNU tar
 20040401 fix "openpkg install openpkg-tool" bootstrapping command
 20040324 fix %l_check_nosource: the output went directly into the shell scripts
-20040320 upgrade to cURL 7.11.1
+20040320 upgrade to cURL 7.11.1 (excluded in 2.0.1)
 20040320 bump provide for 2.0.0-2.0.0
 
 20040224 **** RELEASE AS PART OF OPENPKG 2.0.0 ***

+ 2 - 2
openpkg/openpkg.sh

@@ -75,10 +75,10 @@ if [ ".$opt_tool" != . ]; then
     OPENPKG_TOOLS="$opt_tools"
 fi
 if [ ".$OPENPKG_TOOLS" != . -a ".$OPENPKG_TOOLS_CMDPATH" = . ]; then
-    OPENPKG_TOOLS_CMDPATH="$OPENPKG_TOOLS/cmd"
+    OPENPKG_TOOLS_CMDPATH="$OPENPKG_TOOLS/cmd:@"
 fi
 if [ ".$OPENPKG_TOOLS" != . -a ".$OPENPKG_TOOLS_APIPATH" = . ]; then
-    OPENPKG_TOOLS_APIPATH="$OPENPKG_TOOLS/api"
+    OPENPKG_TOOLS_APIPATH="$OPENPKG_TOOLS/api:@"
 fi
 
 #   determine path to OpenPKG Tool Chain commands

+ 5 - 1
openpkg/openpkg.spec

@@ -39,7 +39,7 @@
 #   o any cc(1)
 
 #   the package version/release
-%define       V_openpkg  20040407
+%define       V_openpkg  20040408
 
 #   the used software versions
 %define       V_rpm      4.2.1
@@ -630,9 +630,13 @@ Provides:     openpkg = 2.0.1-2.0.1
 
     #   build BeeCrypt library
     ( cd beecrypt-%{V_beecrypt}
+      ( echo 'ac_cv_have_dev_dsp=no'
+        echo 'ac_cv_have_dev_audio=no'
+      ) >config.cache
       CC="${l_cc}" \
       CFLAGS="-O" \
       ./configure \
+        --cache-file=./config.cache \
         --prefix=%{l_prefix} \
         --disable-threads \
         --disable-shared \