From: <smi...@us...> - 2004-01-20 01:59:51
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv1536/scripts Modified Files: build.sh gnupg libgcrypt Added Files: libgpg-error Log Message: - added gnupg binary to initrd - added libgpg-error v0.6 - updated libgcrypt to v1.1.91 - updated gnupg to v1.2.4 --- NEW FILE: libgpg-error --- #!/bin/bash # $Source: /cvsroot/devil-linux/build/scripts/libgpg-error,v $ # $Revision: 1.1 $ # $Date: 2004/01/20 01:59:45 $ # # http://www.devil-linux.org # you need the next line, otherwise script won't be executed !!! # DL-build-system v3 ### BEGIN INIT INFO # Provides: libgpg-error # Required-Start: $basebuildtools glibc # Required-Stop: # Default-Start: 1 # Default-Stop: # Description: description ### END INIT INFO # get the directoryname of the script MYDIR=${0%/*} # source functions and config source $MYDIR/settings case $1 in build ) ./configure --prefix=/usr --disable-nls || exit 1 make $PMAKE all || exit 1 strip_debug # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 ;; * ) echo "ERROR ($0)" echo "please add parameter so I know what to do" exit 1 ;; esac Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.73 retrieving revision 1.74 diff -u -d -r1.73 -r1.74 --- build.sh 19 Jan 2004 23:22:57 -0000 1.73 +++ build.sh 20 Jan 2004 01:59:45 -0000 1.74 @@ -259,7 +259,7 @@ for LINK in $( ls -v $DL_DIR/scripts/.buildorder/rc$LEVEL.d/S* 2> /dev/null) do # reload settings - source settings + source $DL_DIR/scripts/settings # fake uname to display another platform we want to compile the kernel for # also make sure our kernel version is displayed Index: gnupg =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gnupg,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- gnupg 11 Jan 2004 14:43:04 -0000 1.11 +++ gnupg 20 Jan 2004 01:59:45 -0000 1.12 @@ -28,7 +28,16 @@ case $1 in build ) - ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 || exit 1 + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 \ + --without-libiconv-prefix --without-libintl-prefix --with-bzip2 --with-zlib \ + --disable-dynload --disable-exec --disable-photo-viewers --disable-keyserver-helpers --disable-ldap \ + --disable-rpath LDFLAGS=-static || exit 1 + make $PMAKE all || exit 1 + strip_debug + cp g10/gpg gpg-static || exit 1 + + ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-sha512 \ + --without-libiconv-prefix --without-libintl-prefix --with-bzip2 --with-zlib || exit 1 make $PMAKE all || exit 1 strip_debug @@ -48,7 +57,7 @@ rm -rf $WORKDIR/tmp/usr/share || exit 1 copy_docs $WORKDIR/tmp copy_files $WORKDIR/tmp/usr $CDDIR/ || exit 1 - #cp $WORKDIR/tmp/usr/bin/gpg $INITRDDIR/bin || exit 1 + cp gpg-static $INITRDDIR/bin/gpg || exit 1 rm -rf $WORKDIR/tmp || exit 1 ;; Index: libgcrypt =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/libgcrypt,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- libgcrypt 11 Jan 2004 14:43:04 -0000 1.6 +++ libgcrypt 20 Jan 2004 01:59:45 -0000 1.7 @@ -10,7 +10,7 @@ ### BEGIN INIT INFO # Provides: libgcrypt -# Required-Start: $basebuildtools glibc +# Required-Start: $basebuildtools glibc libgpg-error # Required-Stop: # Default-Start: 1 # Default-Stop: |