Changeset 1915

Show
Ignore:
Timestamp:
Tue Feb 21 14:08:46 2006
Author:
sebastian
Message:

1.0.2-4 package dependencies changed

Files:

Legend:

Unmodified
Added
Removed
Modified
  • branches/livesupport-1.0.x/livesupport/etc/Makefile.in

    r1865 r1915  
    441 441     ${CP} ${BIN_DIR}/livesupport-station ${USR_BIN_DIR}  
    442 442     ${CP} ${ETC_DIR}/pg_hba.conf ${USR_ETC_DIR}  
      443     ${CP} ${ETC_DIR}/postgresql.conf ${USR_ETC_DIR}  
    443 444  
    444 445 create_database:  
  • branches/livesupport-1.0.x/livesupport/etc/debian/control

    r1810 r1915  
    59 59 Package: livesupport-station  
    60 60 Architecture: any  
      61 Pre-Depends:  php5-cli | php4-cli,  
      62               postgresql-7.4 | postgresql (>= 7.4),  
      63               postgresql-client (>=7.4)  
    61 64 Depends: ${shlibs:Depends},  
    62 65          livesupport-libs (>= ${dpkg:Version}),  
    63 66          sed,  
    64 67          odbc-postgresql,  
    65            apache | apache2,  
    66            php4,  
    67            php4-domxml,  
      68          apache2 | apache,  
      69          php5 | php4,  
      70          php5 | php4-domxml,  
      71          php5-pgsql | php4-pgsql,  
    68 72          php4-pear,  
    69            php4-pgsql,  
    70            libapache-mod-php4 | libapache2-mod-php4,  
    71            postgresql (>= 7.4),  
    72            postgresql-client (>=7.4)  
      73          libapache-mod-php4,  
      74          libapache2-mod-php5 | libapache2-mod-php4           
    73 75 Description: A radio program automation and support tool.  
    74 76  This package contains the server components of LiveSupport.  
    82 84 Description: A radio program automation and support tool.  
    83 85  This package contains the GUI client components of LiveSupport.  
      86  
  • branches/livesupport-1.0.x/livesupport/etc/debian/changelog

    r1796 r1915  
      1 livesupport (1.0.2-4) unstable; urgency=low  
      2  
      3   * 1.0.2 bugfix release  
      4  
      5  -- Akos Maroy <[email protected]>  Thu, 22 Dec 2005 15:00:00 +0200  
      6  
      7  
      8 livesupport (1.0.2-3) unstable; urgency=low  
      9  
      10   * 1.0.2 bugfix release  
      11  
      12  -- Akos Maroy <[email protected]>  Tue, 13 Dec 2005 16:46:00 +0200  
      13  
      14  
      15 livesupport (1.0.2-2) unstable; urgency=low  
      16  
      17   * 1.0.2 bugfix release  
      18  
      19  -- Akos Maroy <[email protected]>  Tue, 22 Nov 2005 21:38:00 +0200  
      20  
      21  
    1 22 livesupport (1.0.2-1) unstable; urgency=low  
    2 23  
  • branches/livesupport-1.0.x/livesupport/etc/debian/rules

    r1814 r1915  
    122 122     mv -f $(CURDIR)/debian/livesupport/opt/livesupport/etc/apache \  
    123 123           $(CURDIR)/debian/livesupport/opt/livesupport/etc/pg_hba.conf \  
      124           $(CURDIR)/debian/livesupport/opt/livesupport/etc/postgresql.conf \  
    124 125               $(CURDIR)/debian/livesupport-station/opt/livesupport/etc  
    125 126  
  • branches/livesupport-1.0.x/livesupport/etc/debian/livesupport-station.postrm

    r1509 r1915  
    57 57             if [ -f /etc/postgresql/pg_hba.conf ] \  
    58 58                && [ -f /etc/postgresql/pg_hba.conf.before-livesupport ] ; then  
      59                 echo "Restoring /etc/postgresql/pg_hba.conf";  
    59 60                 mv -f /etc/postgresql/pg_hba.conf \  
    60 61                       /etc/postgresql/pg_hba.conf.livesupport ;  
    62 63                       /etc/postgresql/pg_hba.conf ;  
    63 64             fi  
      65              
      66             # restore the old pg_hba.conf file for ubuntu  
      67             if [ -f /etc/postgresql/7.4/main/pg_hba.conf ] \  
      68                && [ -f /etc/postgresql/7.4/main/pg_hba.conf.before-livesupport ] ; then  
      69                 echo "Restoring /etc/postgresql/7.4/main/pg_hba.conf";  
      70                 mv -f /etc/postgresql/7.4/main/pg_hba.conf \  
      71                       /etc/postgresql/7.4/main/pg_hba.conf.livesupport ;  
      72                 mv -f /etc/postgresql/7.4/main/pg_hba.conf.before-livesupport \  
      73                       /etc/postgresql/7.4/main/pg_hba.conf ;  
      74             fi  
      75              
      76             # restore the old postgresql.conf file for ubuntu  
      77             if [ -f /etc/postgresql/7.4/main/postgresql.conf ] \  
      78                && [ -f /etc/postgresql/7.4/main/postgresql.conf.before-livesupport ] ; then  
      79                 echo "Restoring /etc/postgresql/7.4/postgresql.conf";  
      80                 mv -f /etc/postgresql/7.4/main/postgresql.conf \  
      81                       /etc/postgresql/7.4/main/postgresql.conf.livesupport ;  
      82                 mv -f /etc/postgresql/7.4/main/postgresql.conf.before-livesupport \  
      83                       /etc/postgresql/7.4/main/postgresql.conf ;  
      84             fi  
    64 85         ;;  
    65 86