diff options
author | ashish <ashish@FreeBSD.org> | 2011-09-12 22:22:20 +0800 |
---|---|---|
committer | ashish <ashish@FreeBSD.org> | 2011-09-12 22:22:20 +0800 |
commit | f3e803caabcb0235fef92fb0ca45415d871e3acf (patch) | |
tree | 4fbfffa6ec826aa478c533d2760de903fa2c13cd /security | |
parent | 7e444ab0ec3a8ab89098cbfb055479f31ec0f809 (diff) | |
download | freebsd-ports-gnome-f3e803caabcb0235fef92fb0ca45415d871e3acf.tar.gz freebsd-ports-gnome-f3e803caabcb0235fef92fb0ca45415d871e3acf.tar.zst freebsd-ports-gnome-f3e803caabcb0235fef92fb0ca45415d871e3acf.zip |
- Switch to databases/py-sqlite3 from databases/py-pysqlite2x[1]
- Use GNOME in MASTER_SITES instead of MASTER_SITE_GNOME[1]
- Bump PORTREVISION[1]
- Fix a bug showing up in Python 2.7+
PR: ports/160066
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Diffstat (limited to 'security')
-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: |