Changeset 318 for trunk/hotstuff/debian

Show
Ignore:
Timestamp:
02/01/07 08:56:17 (5 years ago)
Author:
josef
Message:

- integration of DXS into hotstuff
- vastly extended installation instructions and general information
- some updates to the debian packaging
- some preparation for version 0.9.1
- manual page for ghnsmetatemplate
- improved makefile, always taking into account the $(DESTDIR)
- removal of obsolete .cvsignore files

[commit from josef@nada]

Location:
trunk/hotstuff/debian
Files:
2 removed
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/hotstuff/debian/changelog

    r240 r318  
     1hotstuff (0.9.1-1) unstable; urgency=low 
     2 
     3  * New upstream release, now including DXS. 
     4  * Debian packaging brought up to date. 
     5 
     6 -- Josef Spillner <josef@kstuff.org>  Wed, 31 Jan 2007 20:23:23 +0100 
     7 
    18hotstuff (0.4-1) unstable; urgency=low 
    29 
  • trunk/hotstuff/debian/control

    r251 r318  
    33Priority: optional 
    44Maintainer: Josef Spillner <josef@kstuff.org> 
    5 Build-Depends: debhelper (>= 4.0.0) 
    6 Standards-Version: 3.6.2.1 
     5Build-Depends: debhelper (>= 5.0.0) 
     6Standards-Version: 3.7.2 
    77 
    88Package: hotstuff 
    9 Architecture: any 
     9Architecture: all 
    1010Depends: hotstuff-doc (= ${Source-Version}), hotstuff-common (= ${Source-Version}), hotstuff-scripts (= ${Source-Version}), hotstuff-admin (= ${Source-Version}), hotstuff-dxs (= ${Source-Version}) 
    1111Description: [Hotstuff] Complete hotstuff installation 
     
    1919 
    2020Package: hotstuff-common 
    21 Architecture: any 
     21Architecture: all 
    2222Depends: perl, postgresql-7.4 | postgresql-8.0, postgresql-common, debconf 
    2323Description: [Hotstuff] Schema files and system configuration 
     
    3131 
    3232Package: hotstuff-scripts 
    33 Architecture: any 
    34 Depends: hotstuff-common, perl, svn 
     33Architecture: all 
     34Depends: hotstuff-common, perl, subversion 
    3535Description: [Hotstuff] Upload processing and repository maintenance 
    3636 Data files uploaded by users via GHNS protocols are scanned and processed 
     
    4444 
    4545Package: hotstuff-dxs 
    46 Architecture: any 
     46Architecture: all 
    4747Depends: hotstuff-common, perl, libsoap-lite-perl 
    4848Description: [Hotstuff] Desktop eXchange Service (dxs) backend 
     
    5656 
    5757Package: hotstuff-admin 
    58 Architecture: any 
    59 Depends: hotstuff-common, apache2, libapache2-mod-php4 
     58Architecture: all 
     59Depends: hotstuff-common, apache2, libapache2-mod-php5 
    6060Description: [Hotstuff] Administrative web interface 
    6161 Day-to-day administrative operations can be performed using the web 
     
    6767 Homepage: http://www.kstuff.org/hotstuff/ 
    6868 
    69 Package: hotstuff-docs 
    70 Architecture: any 
    71 #Depends: 
     69Package: hotstuff-doc 
     70Architecture: all 
    7271Description: [Hotstuff] Documentation 
    7372 Additional documentation not yet present in the individual packages 
  • trunk/hotstuff/debian/hotstuff-common.templates

    r249 r318  
    77Template: hotstuff/conf_host 
    88Type: string 
    9 Description: Database host 
     9Description: Database host: 
    1010 The hostname of the database. 
    1111 Leave empty for a localhost connection. 
     
    1313Template: hotstuff/conf_database 
    1414Type: string 
    15 Description: Database name 
     15Description: Database name: 
    1616 The database name of the database. 
    1717 It is strongly recommended to let Hotstuff use a dedicated database. 
     
    1919Template: hotstuff/conf_user 
    2020Type: string 
    21 Description: Database username 
     21Description: Database username: 
    2222 The username for the Hotstuff database. 
    2323 
    2424Template: hotstuff/conf_password 
    2525Type: password 
    26 Description: Database password 
     26Description: Database password: 
    2727 The password for the Hotstuff database. 
    2828 
  • trunk/hotstuff/debian/rules

    r248 r318  
    3131        dh_installdirs 
    3232 
    33         $(MAKE) install-common DESTDIR=$(CURDIR)/debian/hotstuff-common 
    34         $(MAKE) install-scripts DESTDIR=$(CURDIR)/debian/hotstuff-scripts 
    35         $(MAKE) install-dxs DESTDIR=$(CURDIR)/debian/hotstuff-dxs 
    36         $(MAKE) install-admin DESTDIR=$(CURDIR)/debian/hotstuff-admin 
    37         $(MAKE) install-doc DESTDIR=$(CURDIR)/debian/hotstuff-doc 
     33        $(MAKE) install-common DESTDIR=$(CURDIR)/debian/hotstuff-common prefix=/usr 
     34        $(MAKE) install-scripts DESTDIR=$(CURDIR)/debian/hotstuff-scripts prefix=/usr 
     35        $(MAKE) install-dxs DESTDIR=$(CURDIR)/debian/hotstuff-dxs prefix=/usr 
     36        $(MAKE) install-admin DESTDIR=$(CURDIR)/debian/hotstuff-admin prefix=/usr 
     37        $(MAKE) install-doc DESTDIR=$(CURDIR)/debian/hotstuff-doc prefix=/usr 
    3838 
    3939        #mv $(CURDIR)/debian/hotstuff-common/etc/hotstuff.conf \