From de63251672e5fe52feb1dc0c9c6ca64b8499801a Mon Sep 17 00:00:00 2001 From: robocop Date: Thu, 14 Feb 2008 10:53:55 +0000 Subject: [PATCH] We don't support Sinix-Z anymore. --- .../install/arch-specific/sinixz/Makefile.in | 56 ------- .../install/arch-specific/sinixz/pkginfo.in | 8 - .../arch-specific/sinixz/postinstall.in | 65 -------- .../arch-specific/sinixz/postremove.in | 48 ------ .../arch-specific/sinixz/preinstall.in | 53 ------ .../install/arch-specific/sinixz/prototype.in | 156 ------------------ 6 files changed, 386 deletions(-) delete mode 100644 builds/install/arch-specific/sinixz/Makefile.in delete mode 100644 builds/install/arch-specific/sinixz/pkginfo.in delete mode 100644 builds/install/arch-specific/sinixz/postinstall.in delete mode 100644 builds/install/arch-specific/sinixz/postremove.in delete mode 100644 builds/install/arch-specific/sinixz/preinstall.in delete mode 100644 builds/install/arch-specific/sinixz/prototype.in diff --git a/builds/install/arch-specific/sinixz/Makefile.in b/builds/install/arch-specific/sinixz/Makefile.in deleted file mode 100644 index 31acee94d6..0000000000 --- a/builds/install/arch-specific/sinixz/Makefile.in +++ /dev/null @@ -1,56 +0,0 @@ -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# You may obtain a copy of the Licence at -# http://www.gnu.org/licences/lgpl.html -# -# As a special exception this file can also be included in modules -# with other source code as long as that source code has been -# released under an Open Source Initiative certificed licence. -# More information about OSI certification can be found at: -# http://www.opensource.org -# -# This module is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Lesser General Public Licence for more details. -# -# This module was created by members of the firebird development -# team. All individual contributions remain the Copyright (C) of -# those individuals and all rights are reserved. Contributors to -# this file are either listed below or can be obtained from a CVS -# history command. -# -# Created by: Erik Kunze -# -# Contributor(s): -# -# -# $Id: Makefile.in,v 1.1 2003-07-08 22:58:56 brodsom Exp $ -# - -ROOT=.. - -include $(ROOT)/gen/make.defaults -include $(ROOT)/gen/make.platform -include $(ROOT)/gen/make.rules -include $(ROOT)/gen/make.shared.variables - -@SET_MAKE@ - - -PGK_FILES=pkginfo prototype preinstall postinstall postremove -PKG_DIR=$(RealFirebirdPath)/../install -PKG_NAME=Firebird-@ARCH_TYPE_SUFFIX@-$(FirebirdVersion).$(BuildNum)-$(PackageVersion)-SINIXZ.pkg - -install package packages dist: - @echo Making SINIX-Z package... - rm -rf $(PKG_DIR)/firebird2 - -mkdir -p $(PKG_DIR) - (cd $(PKG_DIR); pkgmk -o -c -d $(PKG_DIR)) - pkgtrans -s $(PKG_DIR) $(PKG_DIR)/$(PKG_NAME) firebird2 - -clean clobber: - rm -rf $(PKG_DIR)/firebird2 - rm -f $(PKG_DIR)/$(PKG_NAME) diff --git a/builds/install/arch-specific/sinixz/pkginfo.in b/builds/install/arch-specific/sinixz/pkginfo.in deleted file mode 100644 index 5751932d1a..0000000000 --- a/builds/install/arch-specific/sinixz/pkginfo.in +++ /dev/null @@ -1,8 +0,0 @@ -LANG=En_US.ASCII -PKG="firebird2" -NAME="Firebird Database" -ARCH="i386" -VERSION="@FIREBIRD_VERSION@" -LOAD="@FIREBIRD_PACKAGE_VERSION@" -CATEGORY="application" -VENDOR="Fujitsu Siemens Computers" diff --git a/builds/install/arch-specific/sinixz/postinstall.in b/builds/install/arch-specific/sinixz/postinstall.in deleted file mode 100644 index c0d43ef8ba..0000000000 --- a/builds/install/arch-specific/sinixz/postinstall.in +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh -# -# $Header: /home/job/firebird/cvs-backup/firebird2/builds/install/arch-specific/sinixz/postinstall.in,v 1.3 2008-02-06 11:27:15 alexpeshkoff Exp $ -#------------------------------------------------------------------------------ -# $Copyright: -# Copyright (C) Siemens Nixdorf Informationssysteme AG 1994 - 1998 -# Copyright (C) Siemens AG 1998 1999 -# Copyright (C) Fujitsu Siemens Computers GmbH 1999 - 2002 -# All rights reserved -# $ -#------------------------------------------------------------------------------ - -FIREBIRD=@prefix@ -cd $FIREBIRD - -# Create lock files -HOSTNAME=`uname -n` -for i in isc_init1 isc_lock1 isc_event1 isc_monitor1 -do - file=${i}.${HOSTNAME} - touch ${file} - chmod 666 ${file} -done - -# Create log -touch firebird.log -chmod 666 firebird.log - -# -# If TCP is installed, update both services and servers databases -# -if [ -f /etc/services ]; then - grep -s @FB_SERVICE_NAME@ /etc/services >/dev/null 2>&1 - if [ $? -ne 0 ] ; then - echo "Patching /etc/services..." - echo "@FB_SERVICE_NAME@ @FB_SERVICE_PORT@/tcp # InterBase Database Remote Protocol" >>/etc/services - fi -fi -if [ -f /etc/inetd.conf ]; then - grep -s @FB_SERVICE_NAME@ /etc/inetd.conf >/dev/null 2>&1 - if [ $? -ne 0 ] ; then - echo "Patching /etc/inetd.conf..." - echo "" >> /etc/inetd.conf - echo "# InterBase Database Remote Server" >> /etc/inetd.conf - echo "@FB_SERVICE_NAME@ stream tcp nowait.30000 root $FIREBIRD/bin/fb_inet_server fb_inet_server" >>/etc/inetd.conf - echo "Restarting inetd..." - kill -HUP `ps -e | grep inetd | awk '{print $1}'` - fi -fi - -if [ -f /etc/profile ]; then - grep -s "# Enhance PATH for Firebird2" /etc/profile >/dev/null 2>&1 - if [ $? -ne 0 ] ; then - echo "Patching /etc/profile..." - echo "# Enhance PATH for Firebird2" >>/etc/profile - echo "PATH=\$PATH:$FIREBIRD/bin" >>/etc/profile - echo "export PATH" >>/etc/profile - echo "LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:$FIREBIRD/lib" >>/etc/profile - echo "export LD_LIBRARY_PATH" >>/etc/profile - echo "FIREBIRD=$FIREBIRD" >>/etc/profile - echo "export FIREBIRD" >>/etc/profile - fi -fi - -# EOF diff --git a/builds/install/arch-specific/sinixz/postremove.in b/builds/install/arch-specific/sinixz/postremove.in deleted file mode 100644 index 597bef9435..0000000000 --- a/builds/install/arch-specific/sinixz/postremove.in +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh -# -# $Header: /home/job/firebird/cvs-backup/firebird2/builds/install/arch-specific/sinixz/postremove.in,v 1.1 2003-07-08 22:58:56 brodsom Exp $ -#------------------------------------------------------------------------------ -# $Copyright: -# Copyright (C) Siemens Nixdorf Informationssysteme AG 1994 - 1998 -# Copyright (C) Siemens AG 1998 1999 -# Copyright (C) Fujitsu Siemens Computers GmbH 1999 2000 -# All rights reserved -# $ -#------------------------------------------------------------------------------ - -# Remove lock and log files -FIREBIRD=@prefix@ -rm -rf $FIREBIRD - -# restore old modules - -case "$LANG" in -De*) echo "Wiederherstellen des Status vor $PKGINST ...";; -*) echo "restoring state before $PKGINST ..." -esac - -cd ${PKGSAV} -find . -type f -exec /usr/bin/uncompress {} \; -ERROR_UNCOMPRESS=`find . -type f -name '*.Z' -print` - -if [ -n "$ERROR_UNCOMPRESS" ] -then - echo "uncompress of \"${ERROR_UNCOMPRESS}\" failed, \nrun uncompress in ${PKGSAV} manually, \nand rest -ore the uncompressed files in the correct pathes.\n\n" - exit 1 -fi - -find . -type f -depth -print | cpio -pdum / - -if [ $? -ne 0 ] -then - echo "restoring of saved files failed, \n please restore files in ${PKGSAV} manually!\n\n" - exit 1 -fi - -if [ -f /etc/inetd.conf ]; then - echo "Restarting inetd..." - kill -HUP `ps -e | grep inetd | awk '{print $1}'` -fi - -# EOF diff --git a/builds/install/arch-specific/sinixz/preinstall.in b/builds/install/arch-specific/sinixz/preinstall.in deleted file mode 100644 index 02899b9adc..0000000000 --- a/builds/install/arch-specific/sinixz/preinstall.in +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# $Header: /home/job/firebird/cvs-backup/firebird2/builds/install/arch-specific/sinixz/preinstall.in,v 1.1 2003-07-08 22:58:56 brodsom Exp $ -#------------------------------------------------------------------------------ -# $Copyright: -# Copyright (C) Siemens Nixdorf Informationssysteme AG 1994 - 1998 -# Copyright (C) Siemens AG 1998 1999 -# Copyright (C) Fujitsu Siemens Computers GmbH 1999 2000 -# All rights reserved -# $ -#------------------------------------------------------------------------------ - -# save files which will be replaced -# don't save shell, will not be removed - -FILELIST=" -/etc/services -/etc/inetd.conf -/etc/profile -" - -echo "saving the original modules ..." - -if [ -f /tmp/ERROR.${PKGINST} ] -then - rm /tmp/ERROR.${PKGINST} -fi - -for file in ${FILELIST};do - if [ ! -f ${PKGSAV}${file}.Z -a -f ${file} ];then - echo ${file} | tr '\040' '\012' | cpio -pvdum ${PKGSAV} - /usr/bin/compress ${PKGSAV}${file} - fi -done >/tmp/ERROR.${PKGINST} 2>&1 - -# check for successful saved modules -ERR=0 -for file in ${FILELIST}; do - [ ! -s ${file} ] && continue - if [ ! -f ${PKGSAV}${file}.Z ]; then - if [ "$ERR" = '0' ];then - echo "\nAn error occured when saving original modules. \ntmp/ERROR.${PKGINST} contains the reported errors.\n\n" - echo "/tmp/ERROR.${PKGINST}:" - cat /tmp/ERROR.${PKGINST} - ERR=1 - fi - ls -l $file ${PKGSAV}${file}.Z - fi -done - -[ "$ERR" = '0' ] && rm -f /tmp/ERROR.${PKGINST} - -exit 0 diff --git a/builds/install/arch-specific/sinixz/prototype.in b/builds/install/arch-specific/sinixz/prototype.in deleted file mode 100644 index bd49dc8a8f..0000000000 --- a/builds/install/arch-specific/sinixz/prototype.in +++ /dev/null @@ -1,156 +0,0 @@ -# $Id: prototype.in,v 1.7 2005-05-27 22:15:19 asfernandes Exp $ -#------------------------------------------------------------------------------- - -!SRCDIR=@NEW_FIREBIRD_DIR@ - -i pkginfo -i preinstall -i postinstall -i postremove -i prototype - -!default 755 root root -d none /usr ? ? ? -d none /usr/lib ? ? ? - -d none @prefix@ 0755 root root - -v CONFIG.prsv @prefix@/security2.fdb=$SRCDIR/security2.fdb 0666 root root -f none @prefix@/firebird.msg=$SRCDIR/firebird.msg 0644 root root -f none @prefix@/de_DE.msg=$SRCDIR/de_DE.msg 0644 root root -f none @prefix@/fr_FR.msg=$SRCDIR/fr_FR.msg 0644 root root -f none @prefix@/ja_JP.msg=$SRCDIR/ja_JP.msg 0644 root root - -d none @prefix@/bin 0755 root root -#f none @prefix@/bin/blrtable=$SRCDIR/bin/blrtable 0755 root root -#f none @prefix@/bin/build_file=$SRCDIR/bin/build_file 0755 root root -#f none @prefix@/bin/change_messages=$SRCDIR/bin/change_messages 0755 root root -#f none @prefix@/bin/check_messages=$SRCDIR/bin/check_messages 0755 root root -#f none @prefix@/bin/codes=$SRCDIR/bin/codes 0755 root root -#f none @prefix@/bin/create_db=$SRCDIR/bin/create_db 0755 root root -f none @prefix@/bin/enter_messages=$SRCDIR/bin/enter_messages 0755 root root -f none @prefix@/bin/fb_inet_server=$SRCDIR/bin/fb_inet_server 0755 root root -f none @prefix@/bin/fb_lock_print=$SRCDIR/bin/fb_lock_print 0755 root root -f none @prefix@/bin/gbak=$SRCDIR/bin/gbak 0755 root root -#f none @prefix@/bin/gbak_static=$SRCDIR/bin/gbak_static 0755 root root -f none @prefix@/bin/gdef=$SRCDIR/bin/gdef 0755 root root -f none @prefix@/bin/gds_drop=$SRCDIR/bin/gds_drop 0755 root root -#f none @prefix@/bin/gds_lock_mgr=$SRCDIR/bin/gds_lock_mgr 0755 root root -#f none @prefix@/bin/gds_relay=$SRCDIR/bin/gds_relay 0755 root root -f none @prefix@/bin/gfix=$SRCDIR/bin/gfix 0755 root root -f none @prefix@/bin/gpre=$SRCDIR/bin/gpre 0755 root root -#f none @prefix@/bin/gpre_boot=$SRCDIR/bin/gpre_boot 0755 root root -#s none @prefix@/bin/gpre_current=gpre_static -#f none @prefix@/bin/gpre_static=$SRCDIR/bin/gpre_static 0755 root root -f none @prefix@/bin/gsec=$SRCDIR/bin/gsec 0755 root root -f none @prefix@/bin/gsplit=$SRCDIR/bin/gsplit 0755 root root -f none @prefix@/bin/gstat=$SRCDIR/bin/gstat 0755 root root -f none @prefix@/bin/isql=$SRCDIR/bin/isql 0755 root root -#f none @prefix@/bin/isql_static=$SRCDIR/bin/isql_static 0755 root root -f none @prefix@/bin/modify_messages=$SRCDIR/bin/modify_messages 0755 root root -f none @prefix@/bin/nbackup=$SRCDIR/bin/nbackup 0755 root root -f none @prefix@/bin/qli=$SRCDIR/bin/qli 0755 root root - -#d none @prefix@/examples 0755 root root -#d none @prefix@/examples/v5 0755 root root - -d none @prefix@/help 0755 root root -f none @prefix@/help/help.fdb=$SRCDIR/help/help.fdb 0444 root root - -d none @prefix@/include 0755 root root -f none @prefix@/include/blr.h=$SRCDIR/include/blr.h 0644 root root -f none @prefix@/include/ib_util.h=$SRCDIR/include/ib_util.h 0644 root root -f none @prefix@/include/ibase.h=$SRCDIR/include/ibase.h 0644 root root -f none @prefix@/include/iberror.h=$SRCDIR/include/iberror.h 0644 root root -f none @prefix@/include/perf.h=$SRCDIR/include/perf.h 0644 root root - -d none @prefix@/intl 0755 root root -f none @prefix@/intl/libfbintl.so=$SRCDIR/intl/libfbintl.so 0755 root root - -d none @prefix@/lib 0755 root root -f none @prefix@/lib/libfbclient.so.@FIREBIRD_VERSION@=$SRCDIR/lib/libfbclient.so.@FIREBIRD_VERSION@ 0755 root root -s none @prefix@/lib/libfbclient.so.2=@prefix@/lib/libfbclient.so.@FIREBIRD_VERSION@ -s none @prefix@/lib/libfbclient.so=@prefix@/lib/libfbclient.so.2 -#f none @prefix@/lib/libfbcommon.a=$SRCDIR/lib/libfbcommon.a 0644 root root -f none @prefix@/lib/libfbembed.so.@FIREBIRD_VERSION@=$SRCDIR/lib/libfbembed.so.@FIREBIRD_VERSION@ 0755 root root -s none @prefix@/lib/libfbembed.so.2=@prefix@/lib/libfbembed.so.@FIREBIRD_VERSION@ -s none @prefix@/lib/libfbembed.so=@prefix@/lib/libfbembed.so.@FIREBIRD_VERSION@ -#f none @prefix@/lib/libfbstatic.a=$SRCDIR/lib/libfbstatic.a 0644 root root -s none /usr/lib/libfbembed.so.2=@prefix@/lib/libfbembed.so.2 -s none /usr/lib/libfbembed.so=@prefix@/lib/libfbembed.so -s none /usr/lib/libgds.so.2=@prefix@/lib/libfbembed.so.2 -s none /usr/lib/libgds.so=@prefix@/lib/libfbembed.so -f none @prefix@/lib/libib_util.so=$SRCDIR/lib/libib_util.so 0755 root root - -d none @prefix@/misc 0755 root root -v CONFIG.prsv @prefix@/firebird.conf=$SRCDIR/misc/firebird.conf 0644 root root - -d none @prefix@/UDF 0755 root root -f none @prefix@/UDF/fbudf.so=$SRCDIR/UDF/fbudf.so 0755 root root -f none @prefix@/UDF/ib_udf.so=$SRCDIR/UDF/ib_udf.so 0755 root root - -d none @prefix@/examples 0755 root root -f none @prefix@/examples/README=$SRCDIR/examples/README 0644 root root -d none @prefix@/examples/api 0755 root root -f none @prefix@/examples/api/api1.c=$SRCDIR/examples/api/api1.c 0644 root root -f none @prefix@/examples/api/api2.c=$SRCDIR/examples/api/api2.c 0644 root root -f none @prefix@/examples/api/api3.c=$SRCDIR/examples/api/api3.c 0644 root root -f none @prefix@/examples/api/api4.c=$SRCDIR/examples/api/api4.c 0644 root root -f none @prefix@/examples/api/api5.c=$SRCDIR/examples/api/api5.c 0644 root root -f none @prefix@/examples/api/api6.c=$SRCDIR/examples/api/api6.c 0644 root root -f none @prefix@/examples/api/api7.c=$SRCDIR/examples/api/api7.c 0644 root root -f none @prefix@/examples/api/api8.c=$SRCDIR/examples/api/api8.c 0644 root root -f none @prefix@/examples/api/api9.c=$SRCDIR/examples/api/api9.c 0644 root root -f none @prefix@/examples/api/api9f.c=$SRCDIR/examples/api/api9f.c 0644 root root -f none @prefix@/examples/api/api9f.def=$SRCDIR/examples/api/api9f.def 0644 root root -f none @prefix@/examples/api/api9f.sql=$SRCDIR/examples/api/api9f.sql 0644 root root -f none @prefix@/examples/api/api10.c=$SRCDIR/examples/api/api10.c 0644 root root -f none @prefix@/examples/api/api11.c=$SRCDIR/examples/api/api11.c 0644 root root -f none @prefix@/examples/api/api12.c=$SRCDIR/examples/api/api12.c 0644 root root -f none @prefix@/examples/api/api13.c=$SRCDIR/examples/api/api13.c 0644 root root -f none @prefix@/examples/api/api14.e=$SRCDIR/examples/api/api14.e 0644 root root -f none @prefix@/examples/api/api15.c=$SRCDIR/examples/api/api15.c 0644 root root -f none @prefix@/examples/api/api16.c=$SRCDIR/examples/api/api16.c 0644 root root -f none @prefix@/examples/api/api16t.c=$SRCDIR/examples/api/api16t.c 0644 root root -f none @prefix@/examples/api/apifull.c=$SRCDIR/examples/api/apifull.c 0644 root root -f none @prefix@/examples/api/example.def=$SRCDIR/examples/api/example.def 0644 root root -f none @prefix@/examples/api/winevent.c=$SRCDIR/examples/api/winevent.c 0644 root root -f none @prefix@/examples/api/winevent.def=$SRCDIR/examples/api/winevent.def 0644 root root -f none @prefix@/examples/api/winevent.rc=$SRCDIR/examples/api/winevent.rc 0644 root root -d none @prefix@/examples/build_unix 0755 root root -f none @prefix@/examples/build_unix/Makefile.in.example5=$SRCDIR/examples/build_unix/Makefile.in.example5 0644 root root -f none @prefix@/examples/build_unix/Makefile.in.v5_examples=$SRCDIR/examples/build_unix/Makefile.in.v5_examples 0644 root root -d none @prefix@/examples/dyn 0755 root root -f none @prefix@/examples/dyn/dyn1.e=$SRCDIR/examples/dyn/dyn1.e 0644 root root -f none @prefix@/examples/dyn/dyn2.e=$SRCDIR/examples/dyn/dyn2.e 0644 root root -f none @prefix@/examples/dyn/dyn3.e=$SRCDIR/examples/dyn/dyn3.e 0644 root root -f none @prefix@/examples/dyn/dyn4.e=$SRCDIR/examples/dyn/dyn4.e 0644 root root -f none @prefix@/examples/dyn/dyn5.e=$SRCDIR/examples/dyn/dyn5.e 0644 root root -f none @prefix@/examples/dyn/dynfull.e=$SRCDIR/examples/dyn/dynfull.e 0644 root root -d none @prefix@/examples/empbuild 0755 root root -f none @prefix@/examples/empbuild/employe2.sql=$SRCDIR/examples/empbuild/employe2.sql 0644 root root -f none @prefix@/examples/empbuild/employee.fdb=$SRCDIR/examples/empbuild/employee.fdb 0666 root root -f none @prefix@/examples/functions.c=$SRCDIR/examples/functions.c 0644 root root -d none @prefix@/examples/include 0755 root root -f none @prefix@/examples/include/align.h=$SRCDIR/examples/include/align.h 0644 root root -f none @prefix@/examples/include/example.h=$SRCDIR/examples/include/example.h 0644 root root -d none @prefix@/examples/stat 0755 root root -f none @prefix@/examples/stat/stat1.e=$SRCDIR/examples/stat/stat1.e 0644 root root -f none @prefix@/examples/stat/stat2.e=$SRCDIR/examples/stat/stat2.e 0644 root root -f none @prefix@/examples/stat/stat3.e=$SRCDIR/examples/stat/stat3.e 0644 root root -f none @prefix@/examples/stat/stat4.e=$SRCDIR/examples/stat/stat4.e 0644 root root -f none @prefix@/examples/stat/stat5.e=$SRCDIR/examples/stat/stat5.e 0644 root root -f none @prefix@/examples/stat/stat6.e=$SRCDIR/examples/stat/stat6.e 0644 root root -f none @prefix@/examples/stat/stat7.e=$SRCDIR/examples/stat/stat7.e 0644 root root -f none @prefix@/examples/stat/stat8.e=$SRCDIR/examples/stat/stat8.e 0644 root root -f none @prefix@/examples/stat/stat9.e=$SRCDIR/examples/stat/stat9.e 0644 root root -f none @prefix@/examples/stat/stat10.e=$SRCDIR/examples/stat/stat10.e 0644 root root -f none @prefix@/examples/stat/stat11.e=$SRCDIR/examples/stat/stat11.e 0644 root root -f none @prefix@/examples/stat/stat12.e=$SRCDIR/examples/stat/stat12.e 0644 root root -f none @prefix@/examples/stat/stat12t.e=$SRCDIR/examples/stat/stat12t.e 0644 root root -d none @prefix@/examples/udf 0755 root root -f none @prefix@/examples/udf/udf.sql=$SRCDIR/examples/udf/udf.sql 0644 root root -f none @prefix@/examples/udf/udflib.c=$SRCDIR/examples/udf/udflib.c 0644 root root -f none @prefix@/examples/udf/udflib.def=$SRCDIR/examples/udf/udflib.def 0644 root root - -# EOF