--- preview.app-0.7.5.orig/debian/menu +++ preview.app-0.7.5/debian/menu @@ -0,0 +1,2 @@ +?package(preview.app):needs="X11" section="Apps/Viewers"\ + title="Preview" command="/usr/bin/Preview" --- preview.app-0.7.5.orig/debian/changelog +++ preview.app-0.7.5/debian/changelog @@ -0,0 +1,33 @@ +preview.app (0.7.5-1ubuntu1) dapper; urgency=low + + * debian/control: Updated build-depends for new GNUstep version + + -- Lukas Fittl Thu, 9 Feb 2006 01:25:01 +0100 + +preview.app (0.7.5-1) unstable; urgency=low + + * New upstream version. + + -- Gürkan Sengün Thu, 16 Dec 2004 20:54:30 +0100 + +preview.app (0.7-1) unstable; urgency=low + + * New upstream version. + * Updated debian/control build-depends for GNUstep 0.9.4. + + -- Gürkan Sengün Mon, 22 Nov 2004 01:27:39 +0100 + +preview.app (0.6-2) unstable; urgency=medium + + * Moving the package to unstable + * Renamed source package name to preview.app + * Cleaned debian/{copyright,rules} + + -- Gürkan Sengün Wed, 15 Sep 2004 23:38:23 +0200 + +preview (0.6-1) experimental; urgency=low + + * Initial Release. + + -- Gürkan Sengün Fri, 6 Feb 2004 18:24:38 +0100 + --- preview.app-0.7.5.orig/debian/compat +++ preview.app-0.7.5/debian/compat @@ -0,0 +1 @@ +4 --- preview.app-0.7.5.orig/debian/Preview.1 +++ preview.app-0.7.5/debian/Preview.1 @@ -0,0 +1,21 @@ +.TH PREVIEW 1 "February 6, 2004" +.SH NAME +Preview \- General purpose image viewer for GNUstep +.SH SYNOPSIS +.B Preview +.SH DESCRIPTION +This manual page documents briefly the +.B Preview +command. +This manual page was written for the Debian distribution +because the original program does not have a manual page. +.PP +\fBPreview\fP is an application that can be used to display images. It is +designed to be easy to use and will support all GNUstep features (images +design support, pasteboard/services, printint and layout...). It tries to +follow the NeXTSTEP spirit. +.SH SEE ALSO +.BR GNUstep (7). +.SH AUTHOR +This manual page was written by Gürkan Sengün , +for the Debian project (but may be used by others). --- preview.app-0.7.5.orig/debian/dirs +++ preview.app-0.7.5/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/lib/GNUstep/System +usr/share/lintian/overrides --- preview.app-0.7.5.orig/debian/lintian-override +++ preview.app-0.7.5/debian/lintian-override @@ -0,0 +1 @@ +preview.app: image-file-in-usr-lib --- preview.app-0.7.5.orig/debian/manpages +++ preview.app-0.7.5/debian/manpages @@ -0,0 +1 @@ +debian/Preview.1 --- preview.app-0.7.5.orig/debian/copyright +++ preview.app-0.7.5/debian/copyright @@ -0,0 +1,12 @@ +This package was debianized by Gürkan Sengün on +Fri, 6 Feb 2004 18:24:38 +0100. + +It was downloaded from http://home.gna.org/gsimageapps/ + +Upstream Author: Fabien Vallon + +Copyright: +Fabien Vallon + +Released under the GNU GPL +Please see /usr/share/common-licenses/GPL for the full license. --- preview.app-0.7.5.orig/debian/control +++ preview.app-0.7.5/debian/control @@ -0,0 +1,17 @@ +Source: preview.app +Section: graphics +Priority: optional +Maintainer: Gürkan Sengün +Build-Depends: debhelper (>= 4.0.0), libgnustep-gui0.10-dev, gnustep-make +Standards-Version: 3.6.1 + +Package: preview.app +Architecture: any +Depends: ${shlibs:Depends} +Description: General purpose image viewer for GNUstep + Preview is an application that can be used to display images. It is + designed to be easy to use and will support all GNUstep features (images + design support, pasteboard/services, printint and layout...). It tries to + follow the NeXTSTEP spirit. + . + Homepage: http://mac.wms-network.de/gnustep/imageapps/preview/preview.html --- preview.app-0.7.5.orig/debian/rules +++ preview.app-0.7.5/debian/rules @@ -0,0 +1,73 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# 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 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + . /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh ; \ + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + . /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh ; \ + $(MAKE) clean distclean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + . /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh ; \ + $(MAKE) install GNUSTEP_INSTALLATION_DIR=$(CURDIR)/debian/preview.app/usr/lib/GNUstep/System + +# 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 ChangeLog + install -m 644 debian/lintian-override $(CURDIR)/debian/preview.app/usr/share/lintian/overrides/preview.app + dh_installdocs + dh_installexamples +# dh_install + dh_installmenu + dh_installman + dh_link -ppreview.app usr/bin/gnustep-app-wrapper usr/bin/Preview + dh_strip + dh_compress + 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 --- preview.app-0.7.5.orig/debian/docs +++ preview.app-0.7.5/debian/docs @@ -0,0 +1,6 @@ +README +Documentation/Contributors.rtf +Documentation/TODO +Documentation/FEATURES +Documentation/Developers +Documentation/Known_issues.txt