--- xdms-1.3.2.orig/debian/changelog +++ xdms-1.3.2/debian/changelog @@ -0,0 +1,44 @@ +xdms (1.3.2-3.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix double-build FTBFS (Closes: #442768): Move the Makefile removal + after the “make clean” call so that the sources actually get + cleaned. Use the dh_clean call to do that and remove src/Makefile, + which gets (re)generated as well during the build. + * Also no longer ignore “make clean” errors. + * Update config.{guess,sub} using the autotools-dev code snippet in the + config.status target, and delete them through dh_clean, so as to keep + their update out of the Debian diff. + * Move the Homepage from the description to a source field. + * Bump Standards-Version from 3.7.2 to 3.7.3, no changes needed. + + -- Cyril Brulebois Wed, 27 Feb 2008 15:09:23 +0100 + +xdms (1.3.2-3) unstable; urgency=low + + * Remove uae from recommends. (Closes: #414749) + * Updated debian/copyright. + * Updated debian/rules clean target. + + -- Gürkan Sengün Wed, 04 Apr 2007 10:21:21 +0200 + +xdms (1.3.2-2) unstable; urgency=low + + * Remove lha from recommends. (Closes: #382407) + + -- Gürkan Sengün Tue, 23 Jan 2007 12:17:04 +0100 + +xdms (1.3.2-1) unstable; urgency=low + + * New upstream version. + * Bump standards version. + * Updated homepage links. + * Added recommends. + + -- Gürkan Sengün Sun, 25 Jun 2006 21:19:50 +0200 + +xdms (1.3.1-1) unstable; urgency=low + + * Initial release. (Closes: #147800) + + -- Gürkan Sengün Sun, 11 Dec 2005 09:07:03 +0100 --- xdms-1.3.2.orig/debian/copyright +++ xdms-1.3.2/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Gürkan Sengün on +Sun, 11 Dec 2005 09:07:03 +0100. + +It was downloaded from http://zakalwe.fi/~shd/foss/xdms/ + +Copyright Holders: Andre Rodrigues de la Rocha + Heikki Orsila + +License: + +Public domain + +xDMS is released as public domain software. You can spread it, modify it +and use it in any way you like. You can do anything with it without even +asking me first. But I would like to know if you do something cool with +it. + \ No newline at end of file --- xdms-1.3.2.orig/debian/compat +++ xdms-1.3.2/debian/compat @@ -0,0 +1 @@ +4 --- xdms-1.3.2.orig/debian/rules +++ xdms-1.3.2/debian/rules @@ -0,0 +1,71 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir +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 + CFLAGS="$(CFLAGS) -Wl,-z,defs" ./configure --prefix=/usr --package-prefix=$(CURDIR)/debian/xdms + + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) clean + dh_clean build-stamp config.guess config.sub Makefile src/Makefile + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install + rm -f debian/xdms/usr/share/doc/xdms/ChangeLog.txt + rm -f debian/xdms/usr/share/doc/xdms/COPYING + +# 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.txt + dh_installdocs + 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 --- xdms-1.3.2.orig/debian/docs +++ xdms-1.3.2/debian/docs @@ -0,0 +1 @@ +xdms.txt --- xdms-1.3.2.orig/debian/control +++ xdms-1.3.2/debian/control @@ -0,0 +1,17 @@ +Source: xdms +Section: utils +Priority: optional +Maintainer: Gürkan Sengün +Build-Depends: debhelper (>= 4.0.0), autotools-dev +Standards-Version: 3.7.3 +Homepage: http://zakalwe.fi/~shd/foss/xdms/ + +Package: xdms +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Recommends: unadf +Suggests: uae +Description: An uncompressor for Amiga DMS archives + This a tool for decompressing Amiga DMS files. DMS files contain disk + images that are these days mainly useful for Amiga emulation. It can + unpack DMS images to ADF images. --- xdms-1.3.2.orig/debian/dirs +++ xdms-1.3.2/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/doc/xdms --- xdms-1.3.2.orig/Makefile.in +++ xdms-1.3.2/Makefile.in @@ -4,12 +4,12 @@ clean: $(MAKE) -C src clean + rm xdms.1.gz install: xdms - mkdir -p {PREFIX}/bin {PREFIX}/share/doc/xdms-{VERSION} {PREFIX}/share/man/man1 + mkdir -p {PREFIX}/bin {PREFIX}/share/man/man1 install src/xdms {PREFIX}/bin/ - install xdms.txt COPYING ChangeLog.txt {PREFIX}/share/doc/xdms-{VERSION}/ + install xdms.txt COPYING ChangeLog.txt {PREFIX}/share/doc/xdms/ chmod og+rx {PREFIX}/bin {PREFIX}/bin/xdms - chmod -R og+rX {PREFIX}/share/doc/xdms-{VERSION} - gzip < xdms.1 > xdms.1.gz + gzip -9 < xdms.1 > xdms.1.gz install xdms.1.gz {PREFIX}/share/man/man1/