--- rexima-1.3.orig/Makefile +++ rexima-1.3/Makefile @@ -20,11 +20,11 @@ $(CC) $(CFLAGS) -o rexima rexima.o -lncurses installdirs: - /bin/sh ./mkinstalldirs $(BINDIR) $(MANDIR) + /bin/sh ./mkinstalldirs $(BINDIR) # $(MANDIR) install: rexima installdirs install -s -m 755 rexima $(BINDIR) - install -m 644 rexima.1 $(MANDIR) +# install -m 644 rexima.1 $(MANDIR) uninstall: $(RM) $(BINDIR)/rexima $(MANDIR)/rexima.1 --- rexima-1.3.orig/debian/README.debian +++ rexima-1.3/debian/README.debian @@ -0,0 +1,15 @@ +rexima for DEBIAN +---------------------- + +Comments regarding the Package + +I got back in contact with the author and sent him my patches for Bug#72200 +and they are integrated into the 1.1 release (with some additional changes). + +Pablo Averbuj , Tue, 6 Apr 1999 00:48:52 -0400 + +This is a nifty seemingly-unmaintained mixer. Last time it was updated was +like June 1997. I guess I'm the maintainer now... + +Pablo Averbuj , Tue, 6 Apr 1999 00:48:52 -0400 + --- rexima-1.3.orig/debian/changelog +++ rexima-1.3/debian/changelog @@ -0,0 +1,38 @@ +rexima (1.3-1) unstable; urgency=low + + * New upstream version (Closes: #191465) + + -- Pablo Averbuj Thu, 1 May 2003 01:42:36 -0400 + +rexima (1.1-4) unstable; urgency=low + + * Fixing lintian errors: + * Updated to standards 3.5.0 + * Added build-depends + * Wrapped the full description at column 75 + + -- Pablo Averbuj Fri, 7 Sep 2001 15:57:46 -0400 + +rexima (1.1-3) unstable; urgency=low + + * Recompiled for libncurses5 (Closes: #93941) + + -- Pablo Averbuj Sat, 14 Apr 2001 19:43:22 -0400 + +rexima (1.1-2) unstable; urgency=low + + * Fixed manpage path (Closes: #91009) + + -- Pablo Averbuj Sat, 24 Mar 2001 19:12:11 -0500 + +rexima (1.1-1) unstable; urgency=low + + * New upstream release. Closes: #72200 + + -- Pablo Averbuj Sun, 15 Oct 2000 20:17:57 -0400 + +rexima (1.0-1) unstable; urgency=low + + * Initial Release. + + -- Pablo Averbuj Tue, 6 Apr 1999 00:48:52 -0400 --- rexima-1.3.orig/debian/control +++ rexima-1.3/debian/control @@ -0,0 +1,14 @@ +Source: rexima +Section: sound +Priority: optional +Maintainer: Pablo Averbuj +Standards-Version: 3.5.0 +Build-Depends: libncurses5-dev, debhelper + +Package: rexima +Architecture: any +Depends: ${shlibs:Depends} +Description: A nice little ncurses mixer. + rexima is 'a mixer' spelled backwards. A humble command-line/ncurses mixer + which is easy to use and can modify mixer settings non-interactively in + shell scripts (for example). --- rexima-1.3.orig/debian/copyright +++ rexima-1.3/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Pablo Averbuj pablo@debian.org on +Tue, 6 Apr 1999 00:48:52 -0400. + +It was downloaded from ftp://metalab.unc.edu/pub/Linux/apps/sound/mixer/ + +Copyright: + +rexima v1.3 - a curses-based mixer for Linux. +Copyright (C) 1996 Russell Marks. + +Distributed under GPL version 2 or later. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL-2'. + --- rexima-1.3.orig/debian/dirs +++ rexima-1.3/debian/dirs @@ -0,0 +1 @@ +usr/bin --- rexima-1.3.orig/debian/docs +++ rexima-1.3/debian/docs @@ -0,0 +1,2 @@ +README +NEWS --- rexima-1.3.orig/debian/menu +++ rexima-1.3/debian/menu @@ -0,0 +1,2 @@ +?package(rexima):needs=text section=Apps/Sound\ + title="rexima" command="/usr/bin/rexima" --- rexima-1.3.orig/debian/rules +++ rexima-1.3/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# MAde with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Cristoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + + dh_clean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. + $(MAKE) install PREFIX=`pwd`/debian/tmp/usr + + touch install-stamp + +# 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_testversion + dh_testdir + dh_testroot + dh_installdocs +# dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installinit +# dh_installcron + dh_installmanpages +# dh_undocumented + dh_installchangelogs ChangeLog + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_makeshlibs + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary