--- ncdt-2.1.orig/debian/README.debian +++ ncdt-2.1/debian/README.debian @@ -0,0 +1,9 @@ +ncdt for Debian +---------------------- + +This is the official NcdT .deb package. +NcdT is a small utility for displaying directory trees (much like tree(1)). It +has some additional features not found in other similar utilities. +It was promarily created for purpose of indexing CDs. + +Pawel Wiecek , Sun, 27 Jun 1999 16:23:54 +0200 --- ncdt-2.1.orig/debian/changelog +++ ncdt-2.1/debian/changelog @@ -0,0 +1,69 @@ +ncdt (2.1-4) unstable; urgency=medium + + * QA upload. + * Set Debian QA Group as maintainer. (see #840051) + * Ack for previous NMU. Thanks to Joao Eriberto Mota Filho. (Closes: #800275) + * Migrated DH level to 10. + */debian/control: + - Bumped Standards-Version to 4.0.0. + + -- Daniele Adriana Goulart Lopes Mon, 04 Sep 2017 14:26:26 -0300 + +ncdt (2.1-3.1) unstable; urgency=medium + + * Non-maintainer upload. + * Migrated DH level to 9 to avoid a FTBFS. (Closes: #800275) + * debian/compat: added. + * debian/control: + - Added the ${misc:Depends} variable to provide the + right install dependencies. + - Bumped Standards-Version to 3.9.6. + * debian/rules: removed the DH_COMPAT variable. + + -- Joao Eriberto Mota Filho Sat, 26 Dec 2015 03:22:31 -0200 + +ncdt (2.1-3) unstable; urgency=low + + * Fixed copyright file (closes: #302972) + + -- Pawel Wiecek Tue, 17 May 2005 23:00:51 +0200 + +ncdt (2.1-2) unstable; urgency=low + + * Manpage was missing in 2.1-1 (dh_installman in *NOT* intuitive) + + -- Pawel Wiecek Tue, 22 May 2001 15:26:00 +0200 + +ncdt (2.1-1) unstable; urgency=low + + * New upstream release + * Fixes a bug in MP3 code + + -- Pawel Wiecek Tue, 15 May 2001 12:51:08 +0200 + +ncdt (2.0-1) unstable; urgency=low + + * New upstream release + * Fixes a bug in MP3 code + + -- Pawel Wiecek Mon, 16 Apr 2001 18:23:58 +0200 + +ncdt (1.5-2) unstable; urgency=low + + * Rebuilt against new libc + * Switched to debhelper + + -- Pawel Wiecek Thu, 8 Mar 2001 14:36:44 +0100 + +ncdt (1.5-1) unstable; urgency=low + + * New upstream release (fixes bug #40903) + + -- Pawel Wiecek Wed, 27 Oct 1999 01:07:24 +0200 + +ncdt (1.4-1) unstable; urgency=low + + * Initial Release. + + -- Pawel Wiecek Sun, 27 Jun 1999 16:23:54 +0200 + --- ncdt-2.1.orig/debian/compat +++ ncdt-2.1/debian/compat @@ -0,0 +1,2 @@ +10 + --- ncdt-2.1.orig/debian/control +++ ncdt-2.1/debian/control @@ -0,0 +1,16 @@ +Source: ncdt +Section: utils +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>= 10) +Standards-Version: 4.0.0 + +Package: ncdt +Architecture: any +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: Display directory tree + NcdT displays directory tree, much like standard tree(1), but with few + improvements: + - it prints summary info instead of directory special file size + - it prints MP3 file info + It's particularly useful for indexing CDs. --- ncdt-2.1.orig/debian/copyright +++ ncdt-2.1/debian/copyright @@ -0,0 +1,9 @@ +This package was debianized by Pawel Wiecek coven@debian.org on +Sun, 27 Jun 1999 16:23:54 +0200. + +It was downloaded from my own disk ;^). The official distribution site is +ftp://ftp.coven.vmh.net/utils/unix/. + +Copyright: Pawel Wiecek + +License: GPL. See /usr/share/common-licenses/GPL. --- ncdt-2.1.orig/debian/dirs +++ ncdt-2.1/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/man/man1 +usr/share/doc/ncdt --- ncdt-2.1.orig/debian/rules +++ ncdt-2.1/debian/rules @@ -0,0 +1,83 @@ +#!/usr/bin/make -f +# 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 + +# This is the debhelper compatability version to use. +#export DH_COMPAT=3 + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + + touch configure-stamp + +build: configure-stamp build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #/usr/bin/docbook-to-man debian/ncdt.sgml > ncdt.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. + -$(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/ncdt. +# $(MAKE) install DESTDIR=$(CURDIR)/debian/ncdt + install ncdt debian/ncdt/usr/bin + +# 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_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit + dh_installcron + dh_installman ncdt.1 + dh_installinfo +# dh_undocumented + dh_installchangelogs Changelog + dh_link + dh_strip + dh_compress + dh_fixperms +# # You may want to make some executables suid here. +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure