--- libapache-mod-log-bytes-0.8.orig/Makefile +++ libapache-mod-log-bytes-0.8/Makefile @@ -20,3 +20,4 @@ clean: -rm *.so + -rm *.o --- libapache-mod-log-bytes-0.8.orig/debian/changelog +++ libapache-mod-log-bytes-0.8/debian/changelog @@ -0,0 +1,12 @@ +libapache-mod-log-bytes (0.8-2) unstable; urgency=low + + * Added clean target to makefile + + -- Leo Eraly Fri, 26 Aug 2005 16:22:59 +0200 + +libapache-mod-log-bytes (0.8-1) unstable; urgency=low + + * Initial Release. + + -- Leo Eraly Thu, 25 Aug 2005 15:59:49 +0200 + --- libapache-mod-log-bytes-0.8.orig/debian/compat +++ libapache-mod-log-bytes-0.8/debian/compat @@ -0,0 +1 @@ +4 --- libapache-mod-log-bytes-0.8.orig/debian/control +++ libapache-mod-log-bytes-0.8/debian/control @@ -0,0 +1,16 @@ +Source: libapache-mod-log-bytes +Section: web +Priority: optional +Maintainer: Leo Eraly +Build-Depends: debhelper (>= 4.0.0) , apache-dev +Standards-Version: 3.6.2 + +Package: libapache-mod-log-bytes +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: log all incoming/outgoing bytes + This apache module provides an apache directive + to log (per vhost) the incomming/outgoing bytes per + request + . + This can be usefull for accounting and statistics --- libapache-mod-log-bytes-0.8.orig/debian/rules +++ libapache-mod-log-bytes-0.8/debian/rules @@ -0,0 +1,96 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#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 + # Add here commands to configure the package. + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) module + #docbook-to-man debian/libapache-mod-log-bytes.sgml > libapache-mod-log-bytes.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/libapache-mod-log-bytes. + $(MAKE) install DESTDIR=$(CURDIR)/debian/libapache-mod-log-bytes + + +# 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_installchangelogs + dh_installdocs +# dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo +# dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + 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 --- libapache-mod-log-bytes-0.8.orig/debian/copyright +++ libapache-mod-log-bytes-0.8/debian/copyright @@ -0,0 +1,55 @@ +This package was debianized by Leo Eraly on +Thu, 25 Aug 2005 15:59:49 +0200. + +License: + +/* ==================================================================== + * Copyright (c) 1995-1999 The Apache Group. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * 3. All advertising materials mentioning features or use of this + * software must display the following acknowledgment: + * "This product includes software developed by the Apache Group + * for use in the Apache HTTP server project (http://www.apache.org/)." + * + * 4. The names "Apache Server" and "Apache Group" must not be used to + * endorse or promote products derived from this software without + * prior written permission. For written permission, please contact + * apache@apache.org. + * + * 5. Products derived from this software may not be called "Apache" + * nor may "Apache" appear in their names without prior written + * permission of the Apache Group. + * + * 6. Redistributions of any form whatsoever must retain the following + * acknowledgment: + * "This product includes software developed by the Apache Group + * for use in the Apache HTTP server project (http://www.apache.org/)." + * + * THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY + * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR + * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED + * OF THE POSSIBILITY OF SUCH DAMAGE. + * ==================================================================== + * + * This software consists of voluntary contributions made by many + * individuals on behalf of the Apache Group and was originally based