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

15
debian/control vendored
View File

@ -2,23 +2,24 @@ Source: terminator
Section: misc Section: misc
XS-Python-Version: all XS-Python-Version: all
Priority: optional 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: debhelper (>= 5.0.62), python, cdbs (>= 0.4.49)
Build-Depends-Indep: python-central (>= 0.5.6) Build-Depends-Indep: python-central (>= 0.5.6)
Standards-Version: 3.8.0 Standards-Version: 3.8.0
Vcs-Bzr: http://bazaar.launchpad.net/~gnome-terminator/terminator/trunk Vcs-Svn: svn://svn.debian.org/python-apps/packages/terminator/trunk/
Vcs-Browser: http://code.launchpad.net/~gnome-terminator/terminator/trunk Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/terminator/trunk/
Homepage: http://www.tenshu.net/terminator/ Homepage: http://www.tenshu.net/terminator/
Package: terminator Package: terminator
Architecture: all 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} XB-Python-Version: ${python:Versions}
Provides: x-terminal-emulator
Recommends: xdg-utils, python-xdg 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 Terminator is a little project to produce an efficient way of
filling a large area of screen space with terminals. filling a large area of screen space with terminals.
. .
The user can have multiple terminals in one window and use The user can have multiple terminals in one window and use
keybindings to switch between them. See the manpage for key bindings to switch between them. See the manpage for
details. details.

14
debian/copyright vendored
View File

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

View File

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

View File

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