mirror of https://git.code.sf.net/p/isync/isync
Browse Source
fixed indentation added bug note to manpage about db file format not being architecture independent0.9
Michael Elkins
23 years ago
8 changed files with 183 additions and 34 deletions
@ -0,0 +1,6 @@
|
||||
isync (0.8-1) unstable; urgency=low |
||||
|
||||
* Initial Release. |
||||
|
||||
-- Michael Elkins <melkins@debian> Wed, 16 Jan 2002 13:36:52 -0800 |
||||
|
@ -0,0 +1,23 @@
|
||||
Source: isync |
||||
Section: unknown |
||||
Priority: optional |
||||
Maintainer: Michael Elkins <me@mutt.org> |
||||
Build-Depends: debhelper (>> 3.0.0) |
||||
Standards-Version: 3.5.2 |
||||
|
||||
Package: isync |
||||
Architecture: any |
||||
Depends: ${shlibs:Depends} |
||||
Description: Synchronize a local maildir with a remote IMAP4 mailbox |
||||
A command line application which synchronizes a local maildir-style |
||||
mailbox with a remote IMAP4 mailbox, suitable for use in |
||||
IMAP-disconnected mode. Multiple copies of the remote IMAP4 mailbox |
||||
can be maintained, and all flags are synchronized. |
||||
. |
||||
Features: |
||||
* Fast mode for fetching new mail only |
||||
* Supports imaps: (port 993) TLS/SSL connections |
||||
* Supports STARTTLS (RFC2595) for confidentiality |
||||
* Supports NAMESPACE (RFC2342) |
||||
* Supports CRAM-MD5 (RFC2095) for authentication |
||||
|
@ -0,0 +1,26 @@
|
||||
This package was debianized by Michael Elkins <melkins@debian> on |
||||
Wed, 16 Jan 2002 13:36:52 -0800. |
||||
|
||||
It was downloaded from http://www.sigpipe.org:8080/isync/ |
||||
|
||||
Upstream Author(s): Michael Elkins <me@mutt.org> |
||||
|
||||
Copyright: |
||||
|
||||
* isync - IMAP4 to maildir mailbox synchronizer |
||||
* Copyright (C) 2000-2 Michael R. Elkins <me@mutt.org> |
||||
* |
||||
* This program is free software; you can 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 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* This program 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. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with this program; if not, write to the Free Software |
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||||
|
@ -0,0 +1,85 @@
|
||||
#!/usr/bin/make -f |
||||
# Sample debian/rules that uses debhelper. |
||||
# GNU copyright 1997 to 1999 by Joey Hess. |
||||
|
||||
# Uncomment this to turn on verbose mode. |
||||
#export DH_VERBOSE=1 |
||||
|
||||
# This is the debhelper compatability version to use. |
||||
export DH_COMPAT=3 |
||||
|
||||
configure: configure-stamp |
||||
configure-stamp: |
||||
dh_testdir |
||||
# Add here commands to configure the package. |
||||
./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info |
||||
|
||||
touch configure-stamp |
||||
|
||||
build: build-stamp |
||||
|
||||
build-stamp: configure-stamp |
||||
dh_testdir |
||||
|
||||
# Add here commands to compile the package. |
||||
$(MAKE) |
||||
#/usr/bin/docbook-to-man debian/isync.sgml > isync.1 |
||||
|
||||
touch build-stamp |
||||
|
||||
clean: |
||||
dh_testdir |
||||
dh_testroot |
||||
rm -f build-stamp configure-stamp |
||||
|
||||
# Add here commands to clean up after the build process. |
||||
-$(MAKE) distclean |
||||
|
||||
dh_clean |
||||
|
||||
install: build |
||||
dh_testdir |
||||
dh_testroot |
||||
dh_clean -k |
||||
dh_installdirs |
||||
|
||||
# Add here commands to install the package into debian/isync. |
||||
$(MAKE) install prefix=$(CURDIR)/debian/isync |
||||
|
||||
|
||||
# Build architecture-independent files here. |
||||
binary-indep: build install |
||||
# We have nothing to do by default. |
||||
|
||||
# Build architecture-dependent files here. |
||||
binary-arch: build install |
||||
dh_testdir |
||||
dh_testroot |
||||
# dh_installdebconf |
||||
dh_installdocs |
||||
dh_installexamples |
||||
# dh_installmenu |
||||
# dh_installlogrotate |
||||
# dh_installemacsen |
||||
# dh_installpam |
||||
# dh_installmime |
||||
# dh_installinit |
||||
# dh_installcron |
||||
dh_installman isync.1 |
||||
# dh_installinfo |
||||
# dh_undocumented |
||||
dh_installchangelogs ChangeLog |
||||
dh_link |
||||
dh_strip |
||||
dh_compress |
||||
dh_fixperms |
||||
# dh_makeshlibs |
||||
dh_installdeb |
||||
# dh_perl |
||||
dh_shlibdeps |
||||
dh_gencontrol |
||||
dh_md5sums |
||||
dh_builddeb |
||||
|
||||
binary: binary-indep binary-arch |
||||
.PHONY: build clean binary-indep binary-arch binary install configure |
Loading…
Reference in new issue