diff options
author | Ashish SHUKLA <ashish@FreeBSD.org> | 2011-09-12 14:22:20 +0000 |
---|---|---|
committer | Ashish SHUKLA <ashish@FreeBSD.org> | 2011-09-12 14:22:20 +0000 |
commit | 6ede331d097785b04737a8efe385a490752bafbb (patch) | |
tree | 95c9dc453b543da94176d74a7b3ca5ec7bd6b6a7 /security/hotssh | |
parent | ff20fda97c486eb304392823886f00c8ad669be6 (diff) | |
download | ports-6ede331d097785b04737a8efe385a490752bafbb.tar.gz ports-6ede331d097785b04737a8efe385a490752bafbb.zip |
Notes
Diffstat (limited to 'security/hotssh')
-rw-r--r-- | security/hotssh/Makefile | 8 | ||||
-rw-r--r-- | security/hotssh/files/patch-hotssh_hotvte_vteterm.py | 14 |
2 files changed, 18 insertions, 4 deletions
diff --git a/security/hotssh/Makefile b/security/hotssh/Makefile index 06906923c9b8..0ab7440df09a 100644 --- a/security/hotssh/Makefile +++ b/security/hotssh/Makefile @@ -7,9 +7,9 @@ PORTNAME= hotssh PORTVERSION= 0.2.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security gnome -MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITES= GNOME MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} MAINTAINER= ashish@FreeBSD.org @@ -18,11 +18,11 @@ COMMENT= HotSSH is an interface to Secure Shell, for GNOME and OpenSSH BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/py-dbus \ ${LOCALBASE}/libdata/pkgconfig/pygobject-2.0.pc:${PORTSDIR}/devel/py-gobject \ ${LOCALBASE}/libdata/pkgconfig/dbus-glib-1.pc:${PORTSDIR}/devel/dbus-glib \ - ${PYTHON_SITELIBDIR}/pysqlite2/test/__init__.py:${PORTSDIR}/databases/py-pysqlite23 \ + ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/py-dbus \ ${LOCALBASE}/libdata/pkgconfig/pygobject-2.0.pc:${PORTSDIR}/devel/py-gobject \ - ${PYTHON_SITELIBDIR}/pysqlite2/test/__init__.py:${PORTSDIR}/databases/py-pysqlite23 \ + ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 \ ${PYTHON_SITELIBDIR}/gtk-2.0/vtemodule.so:${PORTSDIR}/x11-toolkits/py-vte USE_GNOME= pygtk2 gnomedocutils libxslt glib20 diff --git a/security/hotssh/files/patch-hotssh_hotvte_vteterm.py b/security/hotssh/files/patch-hotssh_hotvte_vteterm.py new file mode 100644 index 000000000000..cb274cd2b9b9 --- /dev/null +++ b/security/hotssh/files/patch-hotssh_hotvte_vteterm.py @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- hotssh/hotvte/vteterm.py.orig ++++ hotssh/hotvte/vteterm.py +@@ -264,7 +264,7 @@ + def __set_gtk_colors(self): + fg = self.style.text[gtk.STATE_NORMAL] + bg = self.style.base[gtk.STATE_NORMAL] +- self.set_colors(True, fg, bg, isdefault=True) ++ self.set_colors(fg, bg, False, isdefault=True) + + def set_colors(self, fg, bg, palette, isdefault=False): + if not isdefault: |