diff --git a/addressbook/debian/changelog b/addressbook/debian/changelog new file mode 100644 index 0000000000..2213961fa8 --- /dev/null +++ b/addressbook/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-addressbook (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/addressbook/debian/control b/addressbook/debian/control new file mode 100644 index 0000000000..edfb9f7aa7 --- /dev/null +++ b/addressbook/debian/control @@ -0,0 +1,15 @@ +Source: phpgroupware-addressbook +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-addressbook +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGrouhpWare addressbook management module + This phpGroupWare module provides a searchable addressbook with vCard + support. + diff --git a/addressbook/debian/copyright b/addressbook/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/addressbook/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/addressbook/debian/rules b/addressbook/debian/rules new file mode 100755 index 0000000000..73d7df75be --- /dev/null +++ b/addressbook/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = addressbook +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/admin/debian/changelog b/admin/debian/changelog new file mode 100644 index 0000000000..bc99bb2465 --- /dev/null +++ b/admin/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-admin (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/admin/debian/control b/admin/debian/control new file mode 100644 index 0000000000..84926e89cb --- /dev/null +++ b/admin/debian/control @@ -0,0 +1,16 @@ +Source: phpgroupware-admin +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-admin +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare administration module + This phpGroupWare module provide the administration facilities for + phpGroupWare (add and remove groups, users, modules, session handling + etc.). + diff --git a/admin/debian/copyright b/admin/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/admin/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/admin/debian/rules b/admin/debian/rules new file mode 100755 index 0000000000..96af18a79d --- /dev/null +++ b/admin/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = admin +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/calendar/debian/changelog b/calendar/debian/changelog new file mode 100644 index 0000000000..be13436ecb --- /dev/null +++ b/calendar/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-calendar (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/calendar/debian/control b/calendar/debian/control new file mode 100644 index 0000000000..31fd229300 --- /dev/null +++ b/calendar/debian/control @@ -0,0 +1,15 @@ +Source: phpgroupware-calendar +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-calendar +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare calendar management module + This phpGroupWare module provides a calendar scheduling module with + alerts for high priority events. + diff --git a/calendar/debian/copyright b/calendar/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/calendar/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/calendar/debian/rules b/calendar/debian/rules new file mode 100755 index 0000000000..0293e52e6b --- /dev/null +++ b/calendar/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = calendar +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/etemplate/debian/changelog b/etemplate/debian/changelog new file mode 100644 index 0000000000..cc36ddc37f --- /dev/null +++ b/etemplate/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-etemplate (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/etemplate/debian/control b/etemplate/debian/control new file mode 100644 index 0000000000..bc0c239f6e --- /dev/null +++ b/etemplate/debian/control @@ -0,0 +1,13 @@ +Source: phpgroupware-etemplate +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-etemplate +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare etemplate module. + This phpGroupWare module provides the Templates and Dialog-Editor. diff --git a/etemplate/debian/copyright b/etemplate/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/etemplate/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/etemplate/debian/rules b/etemplate/debian/rules new file mode 100755 index 0000000000..89bdd35b68 --- /dev/null +++ b/etemplate/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = etemplate +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/filemanager/debian/changelog b/filemanager/debian/changelog new file mode 100644 index 0000000000..6487f33a54 --- /dev/null +++ b/filemanager/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-phpwebhosting (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/filemanager/debian/control b/filemanager/debian/control new file mode 100644 index 0000000000..d4286bbc1a --- /dev/null +++ b/filemanager/debian/control @@ -0,0 +1,18 @@ +Source: phpgroupware-phpwebhosting +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-phpwebhosting +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare next generation file manager module. + The next generation file manager for phpGroupWare. Abilities include all + common file actions (upload, mkdir, rename, delete, copy, move), creating and + editing text files, and syncing with the file system. Per file/directory + comments are stored, and version history is tracked. Group sharing and ACL + are fully supported. + diff --git a/filemanager/debian/copyright b/filemanager/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/filemanager/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/filemanager/debian/rules b/filemanager/debian/rules new file mode 100755 index 0000000000..12404a4261 --- /dev/null +++ b/filemanager/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = phpwebhosting +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/infolog/debian/changelog b/infolog/debian/changelog new file mode 100644 index 0000000000..46ecfa1173 --- /dev/null +++ b/infolog/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-infolog (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/infolog/debian/control b/infolog/debian/control new file mode 100644 index 0000000000..dcf5b05d46 --- /dev/null +++ b/infolog/debian/control @@ -0,0 +1,15 @@ +Source: phpgroupware-infolog +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-infolog +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare infolog applcation + This phpGroupWare module allows to track ongoing and previous support + requests, phone calls, and other customer relations. + diff --git a/infolog/debian/copyright b/infolog/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/infolog/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/infolog/debian/rules b/infolog/debian/rules new file mode 100755 index 0000000000..18ea6f3af3 --- /dev/null +++ b/infolog/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = infolog +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/preferences/debian/changelog b/preferences/debian/changelog new file mode 100644 index 0000000000..f6f22d470d --- /dev/null +++ b/preferences/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-preferences (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/preferences/debian/control b/preferences/debian/control new file mode 100644 index 0000000000..54cc6a4970 --- /dev/null +++ b/preferences/debian/control @@ -0,0 +1,14 @@ +Source: phpgroupware-preferences +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-preferences +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare preferences management module + This phpGroupWare module provides the user preferences management system. + diff --git a/preferences/debian/copyright b/preferences/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/preferences/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/preferences/debian/rules b/preferences/debian/rules new file mode 100755 index 0000000000..6673426d93 --- /dev/null +++ b/preferences/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = preferences +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/setup/debian/changelog b/setup/debian/changelog new file mode 100644 index 0000000000..3508a8e44d --- /dev/null +++ b/setup/debian/changelog @@ -0,0 +1,6 @@ +phpgroupware-setup (0.9.14-0.RC3.3) unstable; urgency=low + + * New release. + - Source is now splitted into modules. + + -- Luca - De Whiskey's - De Vitis Mon, 21 May 2001 15:00:56 +0200 diff --git a/setup/debian/control b/setup/debian/control new file mode 100644 index 0000000000..42f6768964 --- /dev/null +++ b/setup/debian/control @@ -0,0 +1,15 @@ +Source: phpgroupware-setup +Section: web +Priority: optional +Maintainer: Luca - De Whiskey's - De Vitis +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.5.2 + +Package: phpgroupware-setup +Section: web +Architecture: all +Depends: phpgroupware (>= ${Source-Version}), php3-pgsql | php3-cgi-pgsql | php4-pgsql | php3-mysql | php3-cgi-mysql | php4-mysql +Description: The phpGroupWare setup III module + This phpGroupWare module allows the system administrators to manage the + wole set of modules. + diff --git a/setup/debian/copyright b/setup/debian/copyright new file mode 100644 index 0000000000..900148502e --- /dev/null +++ b/setup/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Luca - De Whiskey's - De Vitis on +Sat, 29 Jun 2002 17:13:40 +0200 + +It was downloaded from the CVS repository at subversion.gnu.org. Try: +prompt$ CVSROOT=:pserver:anoncvs@subversions.gnu.org:/cvsroot/phpgroupware +prompt$ CVS_RSH=ssh +prompt$ cvs login +prompt$ cvs get all packages + +Upstream Author(s): +Please, see credits.txt, the README file or visit http://apps.phpgroupware.org/ + +Copyright: +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL . diff --git a/setup/debian/rules b/setup/debian/rules new file mode 100755 index 0000000000..2038bacb2a --- /dev/null +++ b/setup/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +APP = setup +PACKAGE = debian/phpgroupware-$(APP)/usr/share/phpgroupware/$(APP) +PACKAGEDOC = debian/phpgroupware-$(APP)/usr/share/doc/phpgroupware-$(APP) + +COPYRIGHT = -iname copyright\* -or -iname license +CHANGELOG = -iname change\* +INSTALL = -iname install +FINDOPT = -type f -not \( -path \*CVS\* -or -path \*debian\* -or -name .cvsignore \) +SPECIAL = -size 0 -or $(INSTALL) -or $(CHANGELOG) -or $(COPYRIGHT) -or -name \*.sgml +STAMPS = -name configure-stamp -or -name build-stamp +APPFILES = -not \( -path \*doc\* -or -path \. -or -name '*.pl' -or -name '*.py' -or $(STAMPS) \) +DOCFILES = -not \( $(SPECIAL) \) + +configure: configure-stamp +configure-stamp: + dh_testdir + # No configuration needed. + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + # Here should go the commands necessary to build the sgml documentation... + touch build-stamp + +clean: + dh_testdir + rm -f build-stamp configure-stamp + rm -f debian/.builded + rm -f debian/files + # Here should go the commands to clean the builded sgml documents. + dh_clean + +install: build + dh_testdir + + # Install $(APP) files in $(PACKAGE) + find $(FINDOPT) $(APPFILES) \ + -exec install -D --mode=644 {} $(PACKAGE)/{} \; + + # Install $(APP) doc files in $(PACKAGEDOC) + cd doc ;\ + find $(FINDOPT) $(DOCFILES) \ + -exec install -D --mode=644 {} ../$(PACKAGEDOC)/{} \; + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb | tee debian/.builded + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure