[Pkg-galago-commit] r401 - in packages/experimental: . telepathy-sharp telepathy-sharp/debian

Riccardo Setti giskard-guest at costa.debian.org
Mon Sep 25 18:53:13 UTC 2006


Author: giskard-guest
Date: 2006-09-25 18:53:13 +0000 (Mon, 25 Sep 2006)
New Revision: 401

Added:
   packages/experimental/telepathy-sharp/
   packages/experimental/telepathy-sharp/debian/
   packages/experimental/telepathy-sharp/debian/changelog
   packages/experimental/telepathy-sharp/debian/compat
   packages/experimental/telepathy-sharp/debian/control
   packages/experimental/telepathy-sharp/debian/copyright
   packages/experimental/telepathy-sharp/debian/rules
Log:
first rev of telepathy-sharp

Added: packages/experimental/telepathy-sharp/debian/changelog
===================================================================
--- packages/experimental/telepathy-sharp/debian/changelog	                        (rev 0)
+++ packages/experimental/telepathy-sharp/debian/changelog	2006-09-25 18:53:13 UTC (rev 401)
@@ -0,0 +1,6 @@
+telepathy-sharp (0.0.svn.20060831-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Riccardo Setti <giskard at debian.org>  Mon, 25 Sep 2006 20:45:15 +0200
+

Added: packages/experimental/telepathy-sharp/debian/compat
===================================================================
--- packages/experimental/telepathy-sharp/debian/compat	                        (rev 0)
+++ packages/experimental/telepathy-sharp/debian/compat	2006-09-25 18:53:13 UTC (rev 401)
@@ -0,0 +1 @@
+5

Added: packages/experimental/telepathy-sharp/debian/control
===================================================================
--- packages/experimental/telepathy-sharp/debian/control	                        (rev 0)
+++ packages/experimental/telepathy-sharp/debian/control	2006-09-25 18:53:13 UTC (rev 401)
@@ -0,0 +1,12 @@
+Source: telepathy-sharp
+Section: libs
+Priority: optional
+Maintainer: Riccardo Setti <giskard at debian.org>
+Build-Depends: debhelper (>= 5), cdbs, autotools-dev, libmono-dev, mono-gmcs
+Standards-Version: 3.7.2
+
+Package: telepathy-sharp
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: telepathy sharp bindings
+ NET package containing proxy classes for use in clients

Added: packages/experimental/telepathy-sharp/debian/copyright
===================================================================
--- packages/experimental/telepathy-sharp/debian/copyright	                        (rev 0)
+++ packages/experimental/telepathy-sharp/debian/copyright	2006-09-25 18:53:13 UTC (rev 401)
@@ -0,0 +1,35 @@
+This package was debianized by Riccardo Setti <giskard at debian.org> on
+Mon, 25 Sep 2006 20:45:15 +0200.
+
+It was downloaded from: http://telepathy.freedesktop.org/wiki/TelepathySharp 
+
+Upstream Author: Andre Moreira Magalhaes (andrunko) <andre.magalhaes at indt.org.br>
+		 Kenneth Rohde Christiansen (kenne) <kenneth.christiansen at gmail.com>
+		 Renato Araujo Oliveira Filho (renatofilho) <renato.filho at indt.org.br>
+		 Alp Toker (alp) <alp at atoker.com>
+
+Copyright: Copyright (c) 2006 INdT
+
+License:
+
+    Permission is hereby granted, free of charge, to any person 
+    obtaining a copy of this software and associated documentation files 
+    (the "Software"), to deal in the Software without restriction, including 
+    without limitation the rights to use, copy, modify, merge, publish, 
+    distribute, sublicense, and/or sell copies of the Software, and to
+    permit persons to whom the Software is furnished to do so, subject 
+    to the following conditions:
+
+    The above copyright notice and this permission notice shall be included 
+    in all copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
+    THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+The Debian packaging is (C) 2006, Riccardo Setti <giskard at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: packages/experimental/telepathy-sharp/debian/rules
===================================================================
--- packages/experimental/telepathy-sharp/debian/rules	                        (rev 0)
+++ packages/experimental/telepathy-sharp/debian/rules	2006-09-25 18:53:13 UTC (rev 401)
@@ -0,0 +1,107 @@
+#!/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
+
+
+# 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)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#docbook-to-man debian/telepathy-sharp.sgml > telepathy-sharp.1
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) distclean
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/telepathy-sharp.
+	$(MAKE) install DESTDIR=$(CURDIR)/debian/telepathy-sharp
+
+
+# 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 


Property changes on: packages/experimental/telepathy-sharp/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-galago-commit mailing list