--- gobby-0.3.0.orig/contrib/gobby.desktop +++ gobby-0.3.0/contrib/gobby.desktop @@ -11,3 +11,4 @@ Categories=Application;TextEditor;Network; StartupNotify=true MimeType=text/plain; +X-Ubuntu-Gettext-Domain=gobby --- gobby-0.3.0.orig/debian/dirs +++ gobby-0.3.0/debian/dirs @@ -0,0 +1,3 @@ +usr/bin +usr/share/applications +usr/share/pixmaps --- gobby-0.3.0.orig/debian/docs +++ gobby-0.3.0/debian/docs @@ -0,0 +1,4 @@ +AUTHORS +NEWS +TODO +README --- gobby-0.3.0.orig/debian/control +++ gobby-0.3.0/debian/control @@ -0,0 +1,23 @@ +Source: gobby +Section: net +Priority: optional +Maintainer: Philipp Kern +Build-Depends: debhelper (>= 4.0.0), autotools-dev, libxml++2.6-dev (>= 2.12.0-0ubuntu2), libgtkmm-2.4-dev (>= 1:2.8.2-0ubuntu1), libnet6-1.2-dev, libobby-0.3-dev, libgtksourceview-dev (>= 1.5.2-0ubuntu1) +Standards-Version: 3.6.2 + +Package: gobby +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: avahi-daemon +Description: collaborative text editor + Gobby is an editor which allows to edit text documents and source files + collaboratively over a network. All users could work on the file + simultanously without the need to lock it. The parts the various users + wrote are highlighted in different colours and it supports syntax + highlighting of various programming and markup languages. A chat is + also included. + . + Gobby is portable to both Windows and Unix-like platforms and makes use of + the Gtk+ toolkit. + . + Homepage: http://gobby.0x539.de/ --- gobby-0.3.0.orig/debian/menu +++ gobby-0.3.0/debian/menu @@ -0,0 +1,3 @@ +?package(gobby):needs="X11" section="Apps/Editors"\ + title="Gobby" longtitle="Collaborative Gtk+ text editor"\ + command="/usr/bin/gobby" icon="/usr/share/pixmaps/gobby.xpm" --- gobby-0.3.0.orig/debian/changelog +++ gobby-0.3.0/debian/changelog @@ -0,0 +1,76 @@ +gobby (0.3.0-1ubuntu3) dapper; urgency=low + + * rebuild to enable zeroconf/howl support (closes malone #39802) + * add a Suggests for avahi-daemon to give an indicator how to get rid of the + howl warning + + -- Oliver Grawert Thu, 18 May 2006 10:11:25 +0200 + +gobby (0.3.0-1ubuntu2) dapper; urgency=low + + * contrib/gobby.desktop: Add translation domain to get language pack + support. + + -- Martin Pitt Thu, 23 Feb 2006 18:31:27 +0100 + +gobby (0.3.0-1ubuntu1) dapper; urgency=low + + * resyncronize with debian + * adjust build dependency versioning for libgtksourceview-dev, + libxml++2.6-dev and libgtkmm-2.4-dev to match ubuntu versions + + -- Oliver Grawert Thu, 22 Dec 2005 23:16:13 +0100 + +gobby (0.3.0-1) unstable; urgency=low + + * New upstream release (Closes: #336694, #337047, #337067, #343829) + * Comply to the most recent C++ ABI transition + * Fix the removal of config.{guess,sub} + + -- Philipp Kern Mon, 19 Dec 2005 17:36:52 +0100 + +gobby (0.2.2-2) unstable; urgency=medium + + * Build against fixed gtksourceview (Closes: #327861) + + -- Philipp Kern Mon, 17 Oct 2005 21:13:02 +0200 + +gobby (0.2.2-1) unstable; urgency=low + + * New upstream release + * Added a link pointing to the package's homepage to the package + description (Closes: #321262) + + -- Philipp Kern Thu, 8 Sep 2005 13:35:34 +0200 + +gobby (0.2.0-2) unstable; urgency=low + + * Tightened the build dependencies + + -- Philipp Kern Sat, 20 Aug 2005 06:51:57 +0200 + +gobby (0.2.0-1) unstable; urgency=low + + * New upstream release + + -- Philipp Kern Sat, 30 Jul 2005 18:33:55 +0200 + +gobby (0.1.1-1) experimental; urgency=low + + * New upstream release + + -- Philipp Kern Mon, 6 Jun 2005 21:40:02 +0200 + +gobby (0.0+20050521-2) experimental; urgency=medium + + * Added epoch to the dependencies specified by libgtkmm-2.4-1's shlibs file + through a temporary local fix in debian/shlibs.local. (Closes: #310503) + + -- Philipp Kern Wed, 25 May 2005 11:14:44 +0000 + +gobby (0.0+20050521-1) experimental; urgency=low + + * Initial release (Closes: #308047) + + -- Philipp Kern Wed, 11 May 2005 13:06:39 +0200 + --- gobby-0.3.0.orig/debian/rules +++ gobby-0.3.0/debian/rules @@ -0,0 +1,83 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# 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 + +config.status: configure + dh_testdir +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 + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --with-gnome + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean + + rm -rf config.log + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/gobby + + # Copy some additional files. + gunzip -c $(CURDIR)/contrib/artwork/gobby.xpm.gz \ + > $(CURDIR)/debian/gobby/usr/share/pixmaps/gobby.xpm + +# 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_installmenu + dh_installman debian/gobby.1 + 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 --- gobby-0.3.0.orig/debian/watch +++ gobby-0.3.0/debian/watch @@ -0,0 +1,3 @@ +# Site Directory Pattern Version Script +version=2 +http://releases.0x539.de/gobby/ gobby-(\d\.\d\.\d)\.tar\.gz debian uupdate --- gobby-0.3.0.orig/debian/compat +++ gobby-0.3.0/debian/compat @@ -0,0 +1 @@ +4 --- gobby-0.3.0.orig/debian/gobby.1 +++ gobby-0.3.0/debian/gobby.1 @@ -0,0 +1,20 @@ +.TH GOBBY 1 "May 10, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" For manpage-specific macros: see man(7). +.SH NAME +.B gobby +\- a collaborative text editor +.SH SYNOPSIS +.B gobby +.SH DESCRIPTION +.B gobby +is an editor which allows to edit text documents and source files +collaboratively over a network. Changes to the documents are syncronised +instantly to the other clients. +.PP +.SH AUTHOR +.B gobby +was written by the 0x539 dev group . +.PP +This manual page was written by Philipp Kern , +for the Debian project (but may be used by others). --- gobby-0.3.0.orig/debian/copyright +++ gobby-0.3.0/debian/copyright @@ -0,0 +1,24 @@ +This package was debianized by Philipp Kern on +Tue, 10 May 2005 22:47:31 +0200. + +It was downloaded from . + +Copyright (C) 2005 0x539 dev group + +License: + + This program is written by the 0x539 dev group and is licensed + under the GNU General Public License (GPL) version 2 or any + later version. A copy of the license is included in the + distribution. + + 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. + + Copyright (C) 2005 0x539 dev group + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. +