--- picviz-0.5.orig/debian/changelog +++ picviz-0.5/debian/changelog @@ -0,0 +1,11 @@ +picviz (0.5-1build1) oneiric; urgency=low + + * No change rebuild against new libevent. + + -- Bhavani Shankar Sun, 10 Jul 2011 22:53:42 +0530 + +picviz (0.5-1) unstable; urgency=low + + * Initial release (Closes: #511435) + + -- Pierre Chifflier Mon, 30 Mar 2009 10:42:08 +0200 --- picviz-0.5.orig/debian/picviz.overrides +++ picviz-0.5/debian/picviz.overrides @@ -0,0 +1,2 @@ +picviz: non-dev-pkg-with-shlib-symlink usr/lib/libpicviz.so.1 usr/lib/libpicviz.so +picviz: package-name-doesnt-match-sonames libpicviz1 --- picviz-0.5.orig/debian/docs +++ picviz-0.5/debian/docs @@ -0,0 +1,4 @@ +CMakeLists.txt +NEWS +README +doc --- picviz-0.5.orig/debian/control +++ picviz-0.5/debian/control @@ -0,0 +1,32 @@ +Source: picviz +Section: math +Priority: extra +Maintainer: Pierre Chifflier +Build-Depends: debhelper (>= 7), + flex, + bison, + libpcre3-dev, + pkg-config, + cmake, + libcairo2-dev, + libevent-dev +Standards-Version: 3.8.1 +Homepage: http://www.wallinfire.net/picviz + +Package: picviz +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Parallel coordinates plotter + Picviz is a parallel coordinates plotter which enables easy scripting + from various input (tcpdump, syslog, iptables logs, Apache logs, + etc..) to visualize your data and discover interesting results + quickly. + . + Its primary goal is to graph data in order to be able to quickly + analyze problems and find correlations among variables. With security + analysis in mind, the program has been designed to be very flexible, + able to graph millions of events. + . + The language is designed to be close to the graphviz graph description + language. + --- picviz-0.5.orig/debian/rules +++ picviz-0.5/debian/rules @@ -0,0 +1,93 @@ +#!/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 + + + + + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + [ -d build ] || mkdir build + cd build && cmake -DCMAKE_SKIP_RPATH:BOOL=ON \ + -DLIB_INSTALL_DIR=/usr/lib \ + -DMOD_INSTALL_DIR=/usr/lib/picviz \ + -DCMAKE_INSTALL_PREFIX=/usr \ + .. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/picviz.sgml > picviz.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + $(MAKE) clean + rm -f src/libpicviz/filters/filter-lexer.c + rm -f src/libpicviz/filters/filter-parser.c + rm -f src/libpicviz/filters/filter-parser.h + rm -f src/libpicviz/parser/lexer.c + rm -f src/libpicviz/parser/parser.c + rm -f src/libpicviz/parser/parser.h + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/picviz. + $(MAKE) DESTDIR=$(CURDIR)/debian/picviz install + + install -p -o root -g root -m 0644 $(CURDIR)/debian/picviz.overrides $(CURDIR)/debian/picviz/usr/share/lintian/overrides/picviz + + +# 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_installman + dh_link + dh_strip + dh_compress + dh_fixperms + 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 --- picviz-0.5.orig/debian/picviz.examples +++ picviz-0.5/debian/picviz.examples @@ -0,0 +1 @@ +samples --- picviz-0.5.orig/debian/copyright +++ picviz-0.5/debian/copyright @@ -0,0 +1,44 @@ +This package was debianized by Pierre Chifflier on +Fri, 07 Nov 2008 17:09:55 +0100. + +It was downloaded from http://www.wallinfire.net/picviz + +Upstream Author: Sebastien Tricaud + +Copyright (c) 2008 Sebastien Tricaud + +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 version 3. + + 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. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License v3 can be found in `/usr/share/common-licenses/GPL-3'. + + + +Additional licenses: + +Files under 'parsers/Picviz-Dshield' are licensed under the same +license as Perl, either the GNU General Public License, or the Perl +Artistic License. + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL' and +the Artistic Licence in `/usr/share/common-licenses/Artistic'. + + +File 'src/libpicviz/fifo-read.' is licensed under BSD license. +On Debian GNU/Linux systems, the complete text of the BSD license can +be found in `/usr/share/common-licenses/BSD'. + + +The Debian packaging is (C) 2008, Pierre Chifflier and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- picviz-0.5.orig/debian/dirs +++ picviz-0.5/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/lib/picviz +usr/share/lintian/overrides --- picviz-0.5.orig/debian/compat +++ picviz-0.5/debian/compat @@ -0,0 +1 @@ +7