--- rig-1.11.orig/Makefile +++ rig-1.11/Makefile @@ -1,20 +1,20 @@ -PREFIX=/usr/local +PREFIX=/usr BINDIR=${PREFIX}/bin MANDIR=${PREFIX}/man DATADIR=${PREFIX}/share/rig +CXX=g++ all: rig rig.6 rig: rig.cc - g++ -g rig.cc -o rig -Wall -DDATADIR="\"$(DATADIR)\"" + ${CXX} -O2 -g rig.cc -o rig -Wall -DDATADIR="\"$(DATADIR)\"" rig.6: rig.6.in sed s@DATADIR@"$(DATADIR)"@g < rig.6.in > rig.6 install: rig rig.6 - install -g 0 -m 755 -o 0 -s rig $(BINDIR) - install -g 0 -m 644 -o 0 rig.6 $(MANDIR)/man6/rig.6 - install -g 0 -m 755 -o 0 -d $(DATADIR) - install -g 0 -m 644 -o 0 data/*.idx $(DATADIR) + install -g 0 -m 755 -o 0 rig $(DESTDIR)$(BINDIR) + install -g 0 -m 755 -o 0 -d $(DESTDIR)$(DATADIR) + install -g 0 -m 644 -o 0 data/*.idx $(DESTDIR)$(DATADIR) clean: rm -rf *~ *.rej *.orig *.o rig rig.6 --- rig-1.11.orig/rig.cc +++ rig-1.11/rig.cc @@ -26,6 +26,7 @@ #include #include #include +#include using namespace std; --- rig-1.11.orig/debian/dirs +++ rig-1.11/debian/dirs @@ -0,0 +1 @@ +usr/bin --- rig-1.11.orig/debian/copyright +++ rig-1.11/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Aaron Lehmann on +Sat, 8 Sep 2001 23:46:52 -0700. + +It was downloaded from http://rig.sourceforge.net/ + +Upstream Author: Ian Turner + +Copyright: +RIG is released under the terms of the GNU General Public License +version 2. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in /usr/share/common-licenses/GPL. --- rig-1.11.orig/debian/compat +++ rig-1.11/debian/compat @@ -0,0 +1 @@ +5 --- rig-1.11.orig/debian/control +++ rig-1.11/debian/control @@ -0,0 +1,17 @@ +Source: rig +Section: misc +Priority: extra +Maintainer: Norbert Veber +Build-Depends: debhelper (>> 5.0.0) +Standards-Version: 3.8.0 + +Package: rig +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Random identity generator + RIG (Random Identity Generator) is a free replacement for a shareware + program out there called 'fake'. It generates random, yet real-looking, + personal data. It is useful if you need to feed a name to a Web site, + BBS, or real person, and are too lazy to think of one yourself. Also, + if the Web site/BBS/person you are giving the information to tries to + cross-check the city, state, zip, or area code, it will check out. --- rig-1.11.orig/debian/changelog +++ rig-1.11/debian/changelog @@ -0,0 +1,61 @@ +rig (1.11-1build1) precise; urgency=low + + * No-change rebuild to drop spurious libsfgcc1 dependency on armhf. + + -- Adam Conrad Fri, 02 Dec 2011 21:18:38 -0700 + +rig (1.11-1) unstable; urgency=low + + * New upstream release + * Removed -s install option in makefile so that the binary isnt stripped + Closes: #437909 + + -- Norbert Veber Wed, 21 Jan 2009 13:08:18 -0500 + +rig (1.10-4.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix gcc-4.3 FTBFS using patch from "brian m. carlson" + . (Closes: #454891) + + -- Marc 'HE' Brockschmidt Sun, 16 Mar 2008 16:22:26 +0100 + +rig (1.10-4) unstable; urgency=low + + * New maintainer. + Closes: #353394 + * Fixed the -m and -f options. + Closes: #176481 + * Updated area code for Biloxi, MS. + Closes: #113094 + + -- Norbert Veber Wed, 1 Mar 2006 16:34:04 -0500 + +rig (1.10-3) unstable; urgency=low + + * Fix FTBFS with g++ 3.3 (Closes: #195023) + + -- Aaron Lehmann Wed, 28 May 2003 01:46:49 -0700 + +rig (1.10-2) unstable; urgency=low + + * Fix spelling error in description (Closes: #125317) + + -- Aaron Lehmann Sat, 11 Jan 2003 22:07:42 -0800 + +rig (1.10-1) unstable; urgency=low + + * New upstram version. + * Builds (and built) with g++ 3.2. + + -- Aaron Lehmann Sun, 05 Jan 2003 21:24:45 -0800 + +rig (1.04-1) unstable; urgency=low + + * Initial Release. (Closes: #111659) + + -- Aaron Lehmann Sat, 8 Sep 2001 23:46:52 -0700 + +Local variables: +mode: debian-changelog +End: --- rig-1.11.orig/debian/rules +++ rig-1.11/debian/rules @@ -0,0 +1,67 @@ +#!/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 + +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) + + 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/rig. + $(MAKE) install DESTDIR=$(CURDIR)/debian/rig + + +# 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_installdocs + dh_installman rig.6 + dh_installchangelogs Changelog + dh_link + 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 --- rig-1.11.orig/debian/docs +++ rig-1.11/debian/docs @@ -0,0 +1 @@ +README