--- /dev/null
+pine-cn
+~~~~~~~
+
+Ovaj paket donosi dodatnu konfiguraciju za pine paket pripremljen iz Debian
+source paketa, i povlaci instalaciju "nano" paketa, editora vrlo slicnog
+pico, ali je za razliku od njega dio standardne Debian distribucije.
+
+ -- Zoran Dzelajlija <jelly+paketi@srce.hr> Tue, 21 Oct 2003 21:40:37 +0200
--- /dev/null
+changelog.Debian
\ No newline at end of file
--- /dev/null
+pine-cn (2:4.64-1) carnet-etch; urgency=low
+
+ * Prva verzija za Etch
+
+ -- Ivan Rako <irako@srce.hr> Mon, 22 Oct 2007 19:00:07 +0200
+
+pine-cn (2:4.62-1) testing; urgency=low
+
+ * Nova verzija.
+
+ -- Zoran Dzelajlija <jelly+paketi@srce.hr> Fri, 28 Jan 2005 12:57:19 +0100
+
+pine-cn (2:4.61-1) testing; urgency=low
+
+ * Nova verzija.
+
+ -- Zoran Dzelajlija <jelly+paketi@srce.hr> Sun, 5 Sep 2004 05:11:25 +0200
+
+pine-cn (4.58-1) stable; urgency=low
+
+ * Ublazen Depends na pine paket, da radi sa Debianovim 4.58-1.
+
+ -- Zoran Dzelajlija <jelly+paketi@srce.hr> Tue, 21 Oct 2003 21:43:34 +0200
+
+pine-cn (4.58-0) stable; urgency=low
+
+ * Initial release as metapackage.
+ * Pull in pine and nano packages.
+ * Provide "pico" symlinks for nano binary and manual pages.
+ * Drop pilot from the package.
+
+ -- Zoran Dzelajlija <jelly+paketi@srce.hr> Fri, 12 Sep 2003 00:09:03 +0200
+
--- /dev/null
+Source: pine-cn
+Section: non-free/mail
+Priority: optional
+Maintainer: Ivan Rako <Ivan.Rako@CARNet.hr>
+Build-Depends: debhelper (>= 4.0.0)
+Standards-Version: 3.6.1
+
+Package: pine-cn
+Architecture: all
+Depends: pine (>= 4.64), nano
+Provides: mail-reader
+Description: An e-mail reader with MIME and IMAP support
+ Pine is a mail-user-agent that provides features for viewing e-mail.
+ .
+ Some form of mail-transport-agent is desirable for obtaining mail. However
+ fetchmail is sufficient in some cases to deal with the delivery. There are
+ several mail-transport-agents available, including smail, sendmail and others.
+ .
+ Pine needs no mail-transport-agent for sending mail, as it provides SMTP for
+ this purpose.
+ .
+ In addition to mail viewing, Pine provides features for viewing and creating
+ news group postings.
+ .
+ This is a metapackage depending on pine and nano packages.
--- /dev/null
+README.CARNet
+changelog.CARNet
--- /dev/null
+#!/bin/sh -e
+
+if [ "$1" = "configure" ]; then
+ update-alternatives --install /usr/bin/pico pico /usr/bin/nano 50 \
+ --slave /usr/share/man/man1/pico.1.gz pico.1.gz /usr/share/man/man1/nano.1.gz
+fi
--- /dev/null
+#!/bin/sh -e
+
+if [ "$1" != "upgrade" ]; then
+ update-alternatives --remove pico /usr/bin/nano
+fi
--- /dev/null
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ # Add here commands to configure the package.
+
+ touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp
+ dh_testdir
+
+ # Add here commands to compile the package.
+ # $(MAKE)
+
+ 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) clean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/pine-cn.
+ # $(MAKE) install DESTDIR=$(CURDIR)/debian/pine-cn
+
+
+# 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_installchangelogs -k
+ dh_installdocs
+# dh_installexamples
+ dh_install
+# dh_installmenu
+# dh_installdebconf
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_installinit
+# dh_installcron
+# dh_installinfo
+ dh_installman
+# dh_link
+# dh_strip
+# dh_compress
+ dh_fixperms
+# dh_perl
+# dh_python
+# dh_makeshlibs
+ dh_installdeb
+# dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure