--- almanah-0.4.0.orig/debian/almanah.1 +++ almanah-0.4.0/debian/almanah.1 @@ -0,0 +1,27 @@ +.TH ALMANAH 1 "July 10, 2008" + +.SH NAME +almanah \- small GTK+ diary application +.SH SYNOPSIS +\fBalmanah\fP +.RI [ option... ] +.SH DESCRIPTION +\fBAlmanah\fP is a small application to ease management of a personal diary. + It has basic editing and linking abilities like: + * adding links to other content to diary entries + * database encryption + * search and printing support +.SH OPTIONS +.TP +.B \-?, \-\-help +Show help options +.TP +.B \-\-debug +Runs almanah in the debug mode. +.SH AUTHORS +\fBAlmanah\fP was created by Philip Withnall and this +manual page was written by Stefan Ebner . + +.SH LICENSE +\fBAlmanah\fP has been released under the GNU General Public License, +version 3 or later. --- almanah-0.4.0.orig/debian/install +++ almanah-0.4.0/debian/install @@ -0,0 +1,2 @@ +data/icons/32x32/almanah.png usr/share/pixmaps/ + --- almanah-0.4.0.orig/debian/copyright +++ almanah-0.4.0/debian/copyright @@ -0,0 +1,38 @@ +This package was debianized by Angel Abad (Ikusnet SLL) + on Sun, 13 Jul 2008 13:36:33 +0200. + +It was downloaded from http://tecnocode.co.uk/projects/almanah/ + +Upstream Authors: + + Philip Withnall + Icon by Jakub Szypulka + +Copyright: + + Copyright (C) 2008 Philip Withnall + +License: + + This package 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 3 of the License, or + (at your option) any later version. + + This package 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 package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + + +The Debian packaging is (C) 2008, Angel Abad (Ikusbet SLL) + and is licensed under the GPL, see +`/usr/share/common-licenses/GPL'. + --- almanah-0.4.0.orig/debian/docs +++ almanah-0.4.0/debian/docs @@ -0,0 +1,2 @@ +NEWS +README --- almanah-0.4.0.orig/debian/watch +++ almanah-0.4.0/debian/watch @@ -0,0 +1,3 @@ +version=3 + +http://tecnocode.co.uk/projects/almanah/ http://tecnocode.co.uk/downloads/almanah-(.*).tar.gz --- almanah-0.4.0.orig/debian/dirs +++ almanah-0.4.0/debian/dirs @@ -0,0 +1,2 @@ +usr/share/pixmaps + --- almanah-0.4.0.orig/debian/control +++ almanah-0.4.0/debian/control @@ -0,0 +1,22 @@ +Source: almanah +Section: gnome +Priority: extra +Maintainer: Angel Abad (Ikusnet SLL) +Build-Depends: debhelper (>= 7), autotools-dev, dpatch, libxml-parser-perl, libgtk2.0-dev, libgconf2-dev, libsqlite3-dev, libgtkspell-dev, libgpgme11-dev +Standards-Version: 3.8.0 +Vcs-Browser: http://svn.gnome.org/viewvc/diary/ +Vcs-Svn: http://svn.gnome.org/svn/diary/ +Homepage: http://tecnocode.co.uk/projects/almanah/ + +Package: almanah +Architecture: any +Depends: ${shlibs:Depends} +Recommends: seahorse +Description: application to ease management of a personal diary + almanah is a small application to ease management of a personal diary. + It has basic editing and linking abilities like: + . + * adding links to other content to diary entries + * database encryption + * search and printing support + --- almanah-0.4.0.orig/debian/changelog +++ almanah-0.4.0/debian/changelog @@ -0,0 +1,25 @@ +almanah (0.4.0-3) unstable; urgency=low + + * Add debian/watch + * Add manpage + * debian/rules: cosmetic changes + * debian/rules: use dh_install for pixmap install + * Almanah is now extra because it depends on libxcb-render-util0 extra + package + + -- Angel Abad (Ikusnet SLL) Thu, 07 Aug 2008 13:23:13 +0200 + +almanah (0.4.0-2) unstable; urgency=low + + * debian/copyright: Fixed long lines + * debian/control: Recommends seahorse + * debian/patches: Updated icon for about dialog + + -- Angel Abad (Ikusnet SLL) Mon, 21 Jul 2008 12:29:54 +0200 + +almanah (0.4.0-1) unstable; urgency=low + + * Initial release (Closes: #490655) + + -- Angel Abad (Ikusnet SLL) Sun, 13 Jul 2008 13:36:33 +0200 + --- almanah-0.4.0.orig/debian/compat +++ almanah-0.4.0/debian/compat @@ -0,0 +1 @@ +7 --- almanah-0.4.0.orig/debian/manpages +++ almanah-0.4.0/debian/manpages @@ -0,0 +1 @@ +debian/almanah.1 --- almanah-0.4.0.orig/debian/rules +++ almanah-0.4.0/debian/rules @@ -0,0 +1,85 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + +build: build-stamp + +build-stamp: config.status patch + dh_testdir + $(MAKE) + touch $@ + +clean: clean1 unpatch +clean1: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) DESTDIR=$(CURDIR)/debian/almanah install + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_lintian + dh_link + dh_install + dh_desktop + dh_icons + dh_installman + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +patch: patch-stamp +patch-stamp: + dpatch apply-all + dpatch cat-all >patch-stamp + touch patch-stamp + +unpatch: + dpatch deapply-all + rm -rf patch-stamp debian/patched + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install patch unpatch \ + clean1 --- almanah-0.4.0.orig/debian/patches/00list +++ almanah-0.4.0/debian/patches/00list @@ -0,0 +1 @@ +01-fix-icon-name.dpatch --- almanah-0.4.0.orig/debian/patches/01-fix-icon-name.dpatch +++ almanah-0.4.0/debian/patches/01-fix-icon-name.dpatch @@ -0,0 +1,35 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01-fix-icon-name.dpatch by Angel Abad (Ikusnet SLL) +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix the icon name and add Mimetype. + +@DPATCH@ +diff -urNad almanah~/data/almanah.desktop.in almanah/data/almanah.desktop.in +--- almanah~/data/almanah.desktop.in 2008-07-17 09:24:55.000000000 +0200 ++++ almanah/data/almanah.desktop.in 2008-07-21 12:25:50.000000000 +0200 +@@ -3,10 +3,11 @@ + _Comment=Keep a personal diary + _GenericName=Diary + Exec=almanah +-Icon=diary ++Icon=almanah + Terminal=false + Type=Application + Categories=GTK;Utility; ++MimeType=text/plain; + X-GNOME-Bugzilla-Bugzilla=GNOME + X-GNOME-Bugzilla-Product=diary + X-GNOME-Bugzilla-Component=General +diff -urNad almanah~/src/main-window.c almanah/src/main-window.c +--- almanah~/src/main-window.c 2008-07-17 09:24:55.000000000 +0200 ++++ almanah/src/main-window.c 2008-07-21 12:26:36.000000000 +0200 +@@ -297,7 +297,7 @@ + * "Translator name 2 " + */ + "translator-credits", _("translator-credits"), +- "logo-icon-name", "diary", ++ "logo-icon-name", "almanah", + "license", license, + "wrap-license", TRUE, + "website-label", _("Diary Website"),