--- dimp1-1.1.3.orig/debian/changelog +++ dimp1-1.1.3/debian/changelog @@ -0,0 +1,23 @@ +dimp1 (1.1.3-1) unstable; urgency=low + + * New upstream release. + * Change Vcs-Browser field (migrate a --bare git repository on alioth). + * Update to standards version 3.8.3, no further required changes. + + -- Gregory Colpart Wed, 21 Oct 2009 01:13:57 +0200 + +dimp1 (1.1.2-1) unstable; urgency=low + + * New upstream release. + * Change Gregory Colpart's email address in debian/control file. + * Update to standards version 3.8.1, no further required changes. + * We use now Git, add Vcs-* in debian/control. + * Correct a typo in debian/rules. + + -- Gregory Colpart Tue, 21 Apr 2009 03:25:05 +0200 + +dimp1 (1.0-1) unstable; urgency=low + + * Initial release. (Closes: #486724) + + -- Gregory Colpart (evolix) Sun, 20 Jul 2008 14:17:21 +0200 --- dimp1-1.1.3.orig/debian/compat +++ dimp1-1.1.3/debian/compat @@ -0,0 +1 @@ +5 --- dimp1-1.1.3.orig/debian/control +++ dimp1-1.1.3/debian/control @@ -0,0 +1,19 @@ +Source: dimp1 +Section: web +Priority: optional +Maintainer: Debian Horde Maintainers +Uploaders: Gregory Colpart +Build-Depends: debhelper (>= 5) +Vcs-Git: git://git.debian.org/pkg-horde/dimp1.git +Vcs-Browser: http://git.debian.org/?p=pkg-horde/dimp1.git +Standards-Version: 3.8.3 +Homepage: http://www.horde.org/dimp/ + +Package: dimp1 +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, horde3 (>= 3.2), imp4 (>= 4.2) +Description: dynamic webmail component for horde framework + DIMP is the Dynamic Internet Messaging Program or Dynamic IMP, a PHP-based + webmail system and a component of the Horde project. DIMP is a version of the + webmail client IMP utilizing AJAX-like technologies to allow a more dynamic + user experience than traditionally offered via IMP. --- dimp1-1.1.3.orig/debian/copyright +++ dimp1-1.1.3/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Gregory Colpart on +Mon, 23 Apr 2007 00:29:15 +0200. + +It was downloaded from + http://ftp.horde.org/pub/dimp/ + +Upstream Authors: Chuck Hagenbuch , Jan Schneider +, Michael Slusarz + +Copyright 2005-2008 The Horde Project (http://www.horde.org/) + + +License: Horde is licenced under GPL2+ license. + +This program is free software; you may redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +This 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 General Public License +for more details. + +A copy of the GNU General Public License is available as +/usr/share/common-licenses/GPL in the Debian GNU/Linux distribution or +on the World Wide Web at http://www.gnu.org/copyleft/gpl.html. You can +also obtain it by writing to the Free Software Foundation, Inc., +51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + --- dimp1-1.1.3.orig/debian/dirs +++ dimp1-1.1.3/debian/dirs @@ -0,0 +1,2 @@ +usr/share/horde3/dimp +etc/horde/dimp1 --- dimp1-1.1.3.orig/debian/docs +++ dimp1-1.1.3/debian/docs @@ -0,0 +1,2 @@ +README +docs/* --- dimp1-1.1.3.orig/debian/examples +++ dimp1-1.1.3/debian/examples @@ -0,0 +1,2 @@ +config/ +po/ --- dimp1-1.1.3.orig/debian/rules +++ dimp1-1.1.3/debian/rules @@ -0,0 +1,105 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# List all Files and directories here that should not be copied +COPY_EXCLUDE=^(configure-stamp|build-stamp|config|debian|docs|COPYING|po|README|scripts|{arch})$ + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/dimp. + #### copy files #### + for i in $$(ls -1 | egrep -v "$(COPY_EXCLUDE)"); do \ + echo install $$i ; \ + cp -a $$i debian/dimp1/usr/share/horde3/dimp ; \ + done + + #### copy configuration files #### + for i in config/*.dist; do \ + NAME=etc/horde/dimp1/$$(basename $$i ".dist"); \ + cp -a $$i debian/dimp1/$$NAME; \ + done + cp config/conf.xml debian/dimp1/etc/horde/dimp1/ + touch debian/dimp1/etc/horde/dimp1/conf.php + dh_link etc/horde/dimp1 usr/share/horde3/dimp/config + + #### no exec right for .php files (lintian warnings) #### + find ./ -name "*.php" -exec chmod -x '{}' \; + + #### no exec right for .xml/png/gif/css/js/jpg/html/htm files (lintian warnings) #### + find debian/dimp1/usr/share/horde3/dimp \( \ + -name "*.xml" \ + -o -name "*.png" \ + -o -name "*.gif" \ + -o -name "*.css" \ + -o -name "*.js" \ + -o -name "*.jpg" \ + -o -name "*.html" \ + -o -name "*.htm" \) \ + -type f -exec chmod -x '{}' \; + + #### create htaccess to restrict acess by web #### + echo "Deny from all" > debian/dimp1/etc/horde/dimp1/.htaccess + + #### change made for program run with no problems ### + # change HORDE_BASE in php files + # change DIMP_BASE in php files + dh_installexamples + for i in $$(find debian/dimp1 -name "*.php*"); do \ + cat $$i | \ + sed -e "s@define('HORDE_BASE'.*;@define\('HORDE_BASE', '/usr/share/horde3\'\);@" |\ + sed -e "s@define('DIMP_BASE'.*;@define\('DIMP_BASE', '/usr/share/horde3/dimp'\);@" \ + > $$i.rew; \ + cat $$i.rew > $$i; \ + rm -f $$i.rew; \ + done + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs docs/CHANGES + dh_installdocs -XINSTALL -XCHANGES + # clean '.arch-ids' directories to use with tla-buildpackage + -find debian/dimp1 -depth -name ".arch-ids" -exec rm -Rf {} \; + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure + --- dimp1-1.1.3.orig/debian/watch +++ dimp1-1.1.3/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://ftp.horde.org/pub/dimp/dimp-h3-([\d\.]*)\.tar\.gz