--- lsadb-0.1.3.orig/debian/compat +++ lsadb-0.1.3/debian/compat @@ -0,0 +1 @@ +4 --- lsadb-0.1.3.orig/debian/changelog +++ lsadb-0.1.3/debian/changelog @@ -0,0 +1,26 @@ +lsadb (1:0.1.3-1) unstable; urgency=low + + * New upstream release. + * Add an epoch since either the previous Debian package used a bogus version + or upstream decided to renumber. + * Upstream removed clean target so delete the binary ourselves. + * Update to debhelper 4. + * Policy 3.6.2 (no changes). + + -- Mark Brown Mon, 2 Jan 2006 13:01:49 +0000 + +lsadb (1.0-2) unstable; urgency=low + + * New maintainer. + * Lintian cleanups. + * Update to policy 3.6.1. + * Make DEB_BUILD_OPTIONS work and also support noopt. + + -- Mark Brown Sat, 6 Dec 2003 15:41:03 +0000 + +lsadb (1.0-1) unstable; urgency=low + + * Initial Release. (Closes: #137035) + + -- Viral Shah Thu, 14 Mar 2002 20:22:49 -0800 + --- lsadb-0.1.3.orig/debian/control +++ lsadb-0.1.3/debian/control @@ -0,0 +1,17 @@ +Source: lsadb +Section: admin +Priority: optional +Maintainer: Mark Brown +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.6.2 + +Package: lsadb +Architecture: powerpc +Depends: ${shlibs:Depends} +Description: Utility to scan devices on the ADB bus + lsadb is a utility to scan the devices on the ADB-Bus and print out + some information about the devices found. + . + This utility is not very useful on computers without an ADB-Bus. That + means this utility is only useful mostly for Apple Macintosh computers. + --- lsadb-0.1.3.orig/debian/copyright +++ lsadb-0.1.3/debian/copyright @@ -0,0 +1,18 @@ +This package was debianized by Viral Shah on +Thu, 14 Mar 2002 20:22:49 -0800. + +It was downloaded from + +Upstream Author: Matthias Grimm + +Copyright: + + +Copyright: + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +You can find a copy of the GPL in /usr/share/common-licenses/GPL . --- lsadb-0.1.3.orig/debian/rules +++ lsadb-0.1.3/debian/rules @@ -0,0 +1,92 @@ +#!/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 + +# 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) + +INSTALL=install + +CFLAGS += -Wall -g +ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O2 +else + CFLAGS += -O0 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + $(MAKE) CFLAGS="$(CFLAGS)" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + -rm lsadb + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(INSTALL) lsadb $(CURDIR)/debian/lsadb/usr/sbin + +# 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_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron + dh_installman lsadb.1 +# dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms +# 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 --- lsadb-0.1.3.orig/debian/lsadb.dirs +++ lsadb-0.1.3/debian/lsadb.dirs @@ -0,0 +1,2 @@ +usr/bin +usr/sbin --- lsadb-0.1.3.orig/debian/lsadb.docs +++ lsadb-0.1.3/debian/lsadb.docs @@ -0,0 +1 @@ +README