--- notecase-1.9.1.orig/debian/dirs +++ notecase-1.9.1/debian/dirs @@ -0,0 +1,6 @@ +usr/bin +usr/share/applications +usr/share/doc +usr/share/locale +usr/share/mime/packages +usr/share/pixmaps --- notecase-1.9.1.orig/debian/docs +++ notecase-1.9.1/debian/docs @@ -0,0 +1 @@ +readme.txt --- notecase-1.9.1.orig/debian/copyright +++ notecase-1.9.1/debian/copyright @@ -0,0 +1,26 @@ +This package was debianized by Cyril Brulebois on +Mon, 26 July 2005 11:13:34 +0200. + +It was downloaded from http://notecase.sf.net/ + +Copyright Holder: Miroslav Rajcic + +License: + Redistribution and use in source and binary forms, with or without + modification, are permitted under the terms of the BSD License. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + +On Debian systems, the complete text of the BSD License can be +found in `/usr/share/common-licenses/BSD'. + --- notecase-1.9.1.orig/debian/watch +++ notecase-1.9.1/debian/watch @@ -0,0 +1,4 @@ +version=3 +http://sf.net/notecase/notecase-(.*)\_src\.tar\.gz + + --- notecase-1.9.1.orig/debian/control +++ notecase-1.9.1/debian/control @@ -0,0 +1,17 @@ +Source: notecase +Section: editors +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Cyril Brulebois +Build-Depends: debhelper (>= 5), libgtk2.0-dev (>= 2.4), libgnomevfs2-dev +Standards-Version: 3.7.3 + +Package: notecase +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Homepage: http://notecase.sourceforge.net/ +Description: hierarchical note manager (aka outliner) + NoteCase helps you organize your everyday text notes into a single + document, with individual notes placed in the tree-like structure. + To ensure your privacy, encrypted document format is supported, + along with standard unencrypted format. --- notecase-1.9.1.orig/debian/compat +++ notecase-1.9.1/debian/compat @@ -0,0 +1 @@ +5 --- notecase-1.9.1.orig/debian/menu +++ notecase-1.9.1/debian/menu @@ -0,0 +1,6 @@ +?package(notecase):needs="X11"\ + title="notecase"\ + section="Applications/Editors"\ + hints="Productivity,Text"\ + icon="/usr/share/pixmaps/notecase.xpm"\ + command="/usr/bin/notecase" --- notecase-1.9.1.orig/debian/changelog +++ notecase-1.9.1/debian/changelog @@ -0,0 +1,57 @@ +notecase (1.9.1-0ubuntu1) intrepid; urgency=low + + * New Upstream Release (LP: #230041) + + -- Nicolas Van Wambeke Mon, 29 May 2008 20:20:17 +0200 + +notecase (1.7.9-0ubuntu1) hardy; urgency=low + + * New Upstream Release (LP: #190582) + * Keboard shortcuts already work in previous version (LP: #137466) + * Node Title Bar function already work too (LP: #185985) + + -- Mitsuya Shibata Sun, 10 Feb 2008 09:56:36 +0900 + +notecase (1.7.6-0ubuntu1) hardy; urgency=low + + * New Upstream Release (Closes LP: #182226) + * Fix failed assertion when change node level (Closes LP: #137464) + * Exclude help.ncd and any .ncd file from compression (Closes LP: #113959) + * Adapted debian/ directory to upstream deb/ directory + * Add debian/watch file + * Remove debian/README.Debian because it is now unnecessary + * Bump up compat level from 4 to 5 + * Updating debian/menu file to use the new menu hierarchy + * Modify debian/control file + * Bump up Standards-Version field from 3.6.1 to 3.7.3 + * Change Section field from x11 to editors + * Change Build-Depends debhelper version to >=5, libgtk2.0-dev to >=2.4 + * Move Homepage field from description to regular field + + -- Mitsuya Shibata Fri, 18 Jan 2008 01:54:05 +0900 + +notecase (1.5.6-0ubuntu1) gutsy; urgency=low + + * New Upstream release + * The libgnomevfs2-dev is also added to Build-Depends + + -- Vijay(Vijay) Thu, 14 Jun 2007 00:13:48 +0530 + +notecase (1.0.5-2) unstable; urgency=low + + * Fixed: binary located in /usr instead of /usr/bin. + + -- Cyril Brulebois Fri, 9 Sep 2005 09:32:43 +0200 + +notecase (1.0.5-1) unstable; urgency=low + + * New upstream release + + -- Cyril Brulebois Wed, 7 Sep 2005 02:44:17 +0200 + +notecase (1.0.0-1) unstable; urgency=low + + * Initial release; closes no bug (no ITP done) ;p + + -- Cyril Brulebois Tue, 26 Jul 2005 21:25:38 +0200 + --- notecase-1.9.1.orig/debian/rules +++ notecase-1.9.1/debian/rules @@ -0,0 +1,84 @@ +#!/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 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +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) + #docbook-to-man debian/notecase.sgml > notecase.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. + [ ! -f Makefile ] || $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/notecase. + $(MAKE) install DESTDIR=$(CURDIR)/debian/notecase + + +# 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 + dh_installdocs + dh_installexamples + dh_desktop + dh_installmime + dh_installman + dh_link + dh_strip + dh_compress -X.ncd + dh_fixperms + 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