--- parprouted-0.70.orig/Makefile +++ parprouted-0.70/Makefile @@ -1,5 +1,5 @@ EXTRA_CFLAGS = - +PREFIX = $(DESTDIR)/usr #CC = gcc CFLAGS = -g -O2 -Wall $(EXTRA_CFLAGS) @@ -13,8 +13,8 @@ all: parprouted install: all - install parprouted /usr/local/sbin - install parprouted.8 /usr/local/man/man8 + install parprouted $(PREFIX)/sbin + install parprouted.8 $(PREFIX)/share/man/man8 clean: rm -f $(OBJS) parprouted core --- parprouted-0.70.orig/debian/dirs +++ parprouted-0.70/debian/dirs @@ -0,0 +1,2 @@ +usr/sbin +usr/share/man/man8 --- parprouted-0.70.orig/debian/copyright +++ parprouted-0.70/debian/copyright @@ -0,0 +1,46 @@ +This package was debianized by David Moreno Garza on +Mon, 1 May 2006 20:45:46 -0500. + +It was downloaded from http://freshmeat.net/redir/parprouted/30821/url_tgz/parprouted + +Copyright Holder: Vladimir Ivaschenko + (C) 2004 +License: + + 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. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License with + the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; + if not, write to the Free Software Foundation, Inc., 51 Franklin St, + Fifth Floor, Boston, MA 02110-1301, USA. + + On Debian systems, the complete text of the GNU General Public + License, version 2, can be found in /usr/share/common-licenses/GPL-2. + + +Source files also specify: + This application is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License. + + This software is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with this library; if not, write to the + Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301, USA. + +The Debian packaging is (C) 2006, David Moreno Garza +and is public domain. + --- parprouted-0.70.orig/debian/control +++ parprouted-0.70/debian/control @@ -0,0 +1,15 @@ +Source: parprouted +Section: net +Priority: optional +Maintainer: Luciano Bello +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.8.0 + +Package: parprouted +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: transparent IP (Layer 3) proxy ARP bridging tool + This is useful for creation of transparent firewalls and bridging + networks with different MAC protocols. Also, unlike standard + bridging, proxy ARP bridging allows to bridge Ethernet networks + behind wireless nodes without using WDS or layer 2 bridging. --- parprouted-0.70.orig/debian/docs +++ parprouted-0.70/debian/docs @@ -0,0 +1 @@ +README --- parprouted-0.70.orig/debian/changelog +++ parprouted-0.70/debian/changelog @@ -0,0 +1,20 @@ +parprouted (0.70-1) unstable; urgency=low + + * New upstream version (Closes:#470399) + * Standards-Version updated. + * The option nostrip is observed by removing -s (Closes:#437738) + + -- Luciano Bello Wed, 16 Jul 2008 18:11:26 -0300 + +parprouted (0.63-2) unstable; urgency=low + + * New mainteiner (Closes:#387237). + + -- Luciano Bello Fri, 8 Dec 2006 17:36:58 -0300 + +parprouted (0.63-1) unstable; urgency=low + + * Initial release. + + -- David Moreno Garza Mon, 1 May 2006 20:45:46 -0500 + --- parprouted-0.70.orig/debian/rules +++ parprouted-0.70/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + + touch configure-stamp + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + [ ! -f Makefile ] || $(MAKE) clean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/parprouted + + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG + dh_installdocs + dh_installexamples + dh_installman + 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 --- parprouted-0.70.orig/debian/compat +++ parprouted-0.70/debian/compat @@ -0,0 +1 @@ +4