--- telepathy-inspector-0.3.orig/debian/changelog +++ telepathy-inspector-0.3/debian/changelog @@ -0,0 +1,10 @@ +telepathy-inspector (0.3-0ubuntu1) edgy; urgency=low + + [ Daniel d'Andrada Tenório de Carvalho ] + * Initial release + + [ Rodrigo Parra Novo ] + * Adjusted package for Ubuntu Edgy + + -- Rodrigo Parra Novo Wed, 13 Sep 2006 07:41:40 -0300 + --- telepathy-inspector-0.3.orig/debian/compat +++ telepathy-inspector-0.3/debian/compat @@ -0,0 +1 @@ +5 --- telepathy-inspector-0.3.orig/debian/control +++ telepathy-inspector-0.3/debian/control @@ -0,0 +1,29 @@ +Source: telepathy-inspector +Section: devel +Priority: optional +Maintainer: Daniel d'Andrada Tenorio de Carvalho +Build-Depends: debhelper (>= 5), scons, libglib2.0-dev, libgtk2.0-dev, libglade2-dev, libxml2-dev, libdbus-glib-1-dev (>= 0.61) +Standards-Version: 3.7.2 + +Package: telepathy-inspector +Architecture: any +Depends: ${shlibs:Depends} +Description: Telepathy Inspector. A tool for telepathy developers. + Telepathy Inspector is a telepathy client (GTK+) whose objective is to + expose all interfaces and functionalities implemented by a given + connection manager along with its connections, channels, etc. + . + The idea is to enable the user (likely to be a Telepathy developer) to + easily view and access all methods and interfaces of all Telepathy + entities (CMs, connections, etc), which could not be easily achieved + using a regular telepathy client since it would (and should!) hide all + Telepathy logic behind a pleasant, usability oriented, GUI. + . + The Telepathy project aims to provide a unified framework for all + forms of real time conversations, including instant messaging, IRC, + voice calls and video calls. It uses the D-Bus messaging system to + provide a simple interface for client applications, allowing them to + quickly benefit from Telepathy's functionality. + . + For more information, visit: + http://telepathy.freedesktop.org/wiki/TelepathyInspector --- telepathy-inspector-0.3.orig/debian/copyright +++ telepathy-inspector-0.3/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Daniel d'Andrada Tenório de Carvalho on +Thu, 31 Aug 2006 18:52:34 +0000. + +It was downloaded from http://telepathy.freedesktop.org/wiki/TelepathyInspector + +Upstream Author: Daniel d'Andrada Tenório de Carvalho + +Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia + +License: + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +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 Lesser General Public License for more details. + +On Debian systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. + + +The Debian packaging is (C) 2006, Daniel d'Andrada Tenório de Carvalho and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. --- telepathy-inspector-0.3.orig/debian/rules +++ telepathy-inspector-0.3/debian/rules @@ -0,0 +1,101 @@ +#!/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. + scons -Q PREFIX=$(DESTDIR)/usr CONFIGURE=yes + #docbook-to-man debian/telepathy-inspector.sgml > telepathy-inspector.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + scons -c CONFIGURE=no + rm -f *.pyc .sconsign.dblite config.log build_options config_header_vars + rm -rf .sconf_temp/ + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/telepathy-inspector. + mkdir -p $(CURDIR)/debian/telepathy-inspector/usr + scons install PREFIX=$(CURDIR)/debian/telepathy-inspector/usr CONFIGURE=no + + +# 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 ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# 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