Update maintaince files

This commit is contained in:
Nicolas Valcarcel 2009-01-21 08:37:59 -05:00
parent a72010a82e
commit 19ea985e67
5 changed files with 29 additions and 36 deletions

11
debian/control vendored
View File

@ -2,20 +2,21 @@ Source: terminator
Section: misc
XS-Python-Version: all
Priority: optional
Maintainer: Terminator Developers <gnome-terminator@lists.launchpad.net>
Maintainer: Nicolas Valcárcel <nvalcarcel@gmail.com>
Build-Depends: debhelper (>= 5.0.62), python, cdbs (>= 0.4.49)
Build-Depends-Indep: python-central (>= 0.5.6)
Standards-Version: 3.8.0
Vcs-Bzr: http://bazaar.launchpad.net/~gnome-terminator/terminator/trunk
Vcs-Browser: http://code.launchpad.net/~gnome-terminator/terminator/trunk
Vcs-Svn: svn://svn.debian.org/python-apps/packages/terminator/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/terminator/trunk/
Homepage: http://www.tenshu.net/terminator/
Package: terminator
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-vte, python-gconf, gconf2, libgtk2.0-bin
Depends: ${python:Depends}, ${misc:Depends}, python-vte, python-gnome2, python-gobject, python-gtk2, gconf2, libgtk2.0-bin
XB-Python-Version: ${python:Versions}
Provides: x-terminal-emulator
Recommends: xdg-utils, python-xdg
Description: Multiple GNOME terminals in one window
Description: multiple GNOME terminals in one window
Terminator is a little project to produce an efficient way of
filling a large area of screen space with terminals.
.

14
debian/copyright vendored
View File

@ -6,20 +6,15 @@ It was downloaded from https://launchpad.net/terminator/+download
Upstream Authors:
Chris Jones
Thomas Hurst
Emmanuel Bretelle
Nicolas Valcarcel
Huang He
Kees Cook
Thomas Meire
Nicolas Valcarcel
Emmanuel Bretelle
Chris Oattes
Markus Korn
Mackenzie Morgan
Daniel T Chen
Iain Lane
Brian Murray
Edoardo Batini
Cory Kontros
Huang He
Artwork:
Cory Kontros - Produced our current icon under the CC-by-SA licence
@ -34,14 +29,13 @@ Translations:
"Data"
Cristian Grada
"zhuqin"
and others
Seriously, thank you very much to the translators. A few minutes of
their dedication opens up userbases like nothing else.
Copyright:
<Copyright (C) 2006-2009 Chris Jones>
<Copyright (C) 2006-2008 Chris Jones>
License:

3
debian/rules vendored
View File

@ -8,5 +8,8 @@ include /usr/share/cdbs/1/rules/simple-patchsys.mk
DEB_INSTALL_CHANGELOGS_ALL := ChangeLog
binary-install/terminator::
dh_icons -pterminator
clean::
rm -rf build/

View File

@ -1,16 +1,13 @@
#!/bin/sh
gtk-update-icon-cache -q -f /usr/share/icons/hicolor/
pycentral pkginstall terminator
update-menus >/dev/null 2>&1 || true
#DEBHELPER#
#!/bin/sh -e
if [ "$1" = "configure" ]; then
# Add an alternative for aterm
update-alternatives --install /usr/bin/terminator terminator /usr/bin/terminator 30
# Add an alternative for x-terminal-emulator
update-alternatives --install /usr/bin/x-terminal-emulator \
x-terminal-emulator /usr/bin/terminator 50 \
--slave /usr/share/man/man1/x-terminal-emulator.1.gz \
x-terminal-emulator.1.gz /usr/share/man/man1/terminator.1.gz
fi
#DEBHELPER#

View File

@ -1,10 +1,8 @@
#!/bin/sh
#!/bin/sh -e
pycentral pkgremove terminator
#DEBHELPER#
if [ "$1" = "remove" ]; then
if [ "$1" = remove ]; then
update-alternatives --remove terminator /usr/bin/terminator
update-alternatives --remove x-terminal-emulator /usr/bin/terminator
fi
#DEBHELPER#