diff options
author | Larry Rosenman <ler@FreeBSD.org> | 2017-04-30 15:47:51 +0000 |
---|---|---|
committer | Larry Rosenman <ler@FreeBSD.org> | 2017-04-30 15:47:51 +0000 |
commit | 68401688132997e52b1b9405b5aaa1e5ad6a48b3 (patch) | |
tree | b3b50e2c634467d93b8a02100f23093ca0cbeb86 /deskutils | |
parent | bd251adcb6a393657c39b0696f200ee64bacb408 (diff) | |
download | ports-68401688132997e52b1b9405b5aaa1e5ad6a48b3.tar.gz ports-68401688132997e52b1b9405b5aaa1e5ad6a48b3.zip |
Notes
Diffstat (limited to 'deskutils')
24 files changed, 0 insertions, 416 deletions
diff --git a/deskutils/Makefile b/deskutils/Makefile index d60527833261..9fc98f8c7fc2 100644 --- a/deskutils/Makefile +++ b/deskutils/Makefile @@ -130,7 +130,6 @@ SUBDIR += kruler SUBDIR += ksshaskpass SUBDIR += launchy - SUBDIR += libgcal SUBDIR += libopensync-plugin-vformat-devel SUBDIR += libstreamanalyzer SUBDIR += libstreams @@ -149,7 +148,6 @@ SUBDIR += multisync-backup SUBDIR += multisync-syncml SUBDIR += myitcrm - SUBDIR += nagaina SUBDIR += nautilus-actions SUBDIR += nautilus-sendto SUBDIR += nemo-extensions @@ -180,7 +178,6 @@ SUBDIR += plasma-applet-daisy SUBDIR += plasma-applet-fancytasks SUBDIR += plasma-applet-panelspacer - SUBDIR += plasma-applet-playwolf SUBDIR += plasma-applet-qstardict SUBDIR += plasma-applet-serverstatuswidget SUBDIR += plasma-applet-simpleweatherforecast @@ -225,7 +222,6 @@ SUBDIR += strigiutils SUBDIR += sugarcrm SUBDIR += superkaramba - SUBDIR += superswitcher SUBDIR += surrealtodo SUBDIR += syncthing-gtk SUBDIR += systempreferences @@ -248,7 +244,6 @@ SUBDIR += treeline SUBDIR += treesheets SUBDIR += tuxcards - SUBDIR += vboxgtk SUBDIR += virt-manager SUBDIR += vit SUBDIR += vnc2flv diff --git a/deskutils/libgcal/Makefile b/deskutils/libgcal/Makefile deleted file mode 100644 index 8f08c15ef989..000000000000 --- a/deskutils/libgcal/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# Created by: Troels Kofoed Jacobsen <tkjacobsen@gmail.com> -# $FreeBSD$ - -PORTNAME= libgcal -PORTVERSION= 0.9.6 -PORTREVISION= 3 -CATEGORIES= deskutils -MASTER_SITES= GOOGLE_CODE - -MAINTAINER= ports@FreeBSD.org -COMMENT= Library allowing communication with Google calendar and contacts - -LICENSE= BSD3CLAUSE -LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -LIB_DEPENDS= libcurl.so:ftp/curl \ - libxml2.so:textproc/libxml2 - -USES= cmake tar:bzip2 -CMAKE_ARGS= -DLIB_INSTALL_DIR="${LOCALBASE}/lib" \ - -DENABLE_TESTS=OFF -USE_LDCONFIG= yes - -.include <bsd.port.mk> diff --git a/deskutils/libgcal/distinfo b/deskutils/libgcal/distinfo deleted file mode 100644 index a0e1dc07d2b4..000000000000 --- a/deskutils/libgcal/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (libgcal-0.9.6.tar.bz2) = 3197d76c462438d0a761c47d199e402b9d9f05f86a7f9c304313a79ecc5a1503 -SIZE (libgcal-0.9.6.tar.bz2) = 555942 diff --git a/deskutils/libgcal/files/patch-CMakeLists-txt b/deskutils/libgcal/files/patch-CMakeLists-txt deleted file mode 100644 index 9b71bd67eaa2..000000000000 --- a/deskutils/libgcal/files/patch-CMakeLists-txt +++ /dev/null @@ -1,11 +0,0 @@ ---- CMakeLists.txt.orig 2010-06-29 18:21:22.000000000 +0200 -+++ CMakeLists.txt 2010-06-29 18:21:35.000000000 +0200 -@@ -69,7 +69,7 @@ - configure_file(${CMAKE_SOURCE_DIR}/libgcal.pc.in ${CMAKE_BINARY_DIR}/libgcal.pc @ONLY) - install( - FILES "${CMAKE_BINARY_DIR}/libgcal.pc" -- DESTINATION "${GCAL_LIBRARY_INSTALL_DIR}/pkgconfig" -+ DESTINATION "libdata/pkgconfig" - ) - - diff --git a/deskutils/libgcal/files/patch-src_atom_parser.c b/deskutils/libgcal/files/patch-src_atom_parser.c deleted file mode 100644 index cbbc26ec9504..000000000000 --- a/deskutils/libgcal/files/patch-src_atom_parser.c +++ /dev/null @@ -1,32 +0,0 @@ ---- src/atom_parser.c.orig 2010-06-20 20:26:34.000000000 +0200 -+++ src/atom_parser.c 2011-02-24 12:28:51.710766352 +0100 -@@ -282,7 +282,8 @@ static int extract_and_check_multi(xmlDo - if (attr2) { - if (xmlHasProp(node->nodeTab[i], attr2)) { - tmp = xmlGetProp(node->nodeTab[i], attr2); -- (*types)[i] = strdup(strchr(tmp,'#') + 1); -+ if (strchr(tmp,'#')) -+ (*types)[i] = strdup(strchr(tmp,'#') + 1); - xmlFree(tmp); - } - else -@@ -292,7 +293,8 @@ static int extract_and_check_multi(xmlDo - if (attr3) { - if (xmlHasProp(node->nodeTab[i], attr3)) { - tmp = xmlGetProp(node->nodeTab[i], attr3); -- (*protocols)[i] = strdup(strchr(tmp,'#') + 1); -+ if (strchr(tmp,'#')) -+ (*protocols)[i] = strdup(strchr(tmp,'#') + 1); - xmlFree(tmp); - } - else -@@ -383,7 +385,8 @@ static int extract_and_check_multisub(xm - if (attr1) { - if (xmlHasProp(node->nodeTab[i], attr1)) { - tmp = xmlGetProp(node->nodeTab[i], attr1); -- (*types)[i] = strdup(strchr(tmp,'#') + 1); -+ if (strchr(tmp,'#')) -+ (*types)[i] = strdup(strchr(tmp,'#') + 1); - xmlFree(tmp); - } else - (*types)[i] = strdup(""); diff --git a/deskutils/libgcal/pkg-descr b/deskutils/libgcal/pkg-descr deleted file mode 100644 index 3cf2d666732e..000000000000 --- a/deskutils/libgcal/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -An ANSI C library allowing communication with google calendar and contacts, -useful if you need to support this in a C or C++ application. - -WWW: http://code.google.com/p/libgcal/ diff --git a/deskutils/libgcal/pkg-plist b/deskutils/libgcal/pkg-plist deleted file mode 100644 index 3469a7087e45..000000000000 --- a/deskutils/libgcal/pkg-plist +++ /dev/null @@ -1,15 +0,0 @@ -include/libgcal/atom_parser.h -include/libgcal/curl_debug_gcal.h -include/libgcal/gcal.h -include/libgcal/gcal_parser.h -include/libgcal/gcal_status.h -include/libgcal/gcalendar.h -include/libgcal/gcont.h -include/libgcal/gcontact.h -include/libgcal/internal_gcal.h -include/libgcal/xml_aux.h -lib/libgcal.so -lib/libgcal.so.0 -lib/libgcal.so.0.9.6 -lib/LibGCal/cmake/LibGCalConfig.cmake -libdata/pkgconfig/libgcal.pc diff --git a/deskutils/nagaina/Makefile b/deskutils/nagaina/Makefile deleted file mode 100644 index 79787de84bb2..000000000000 --- a/deskutils/nagaina/Makefile +++ /dev/null @@ -1,54 +0,0 @@ -# Created by: Yinghong Liu <relaxbsd@gmail.com> -# $FreeBSD$ - -PORTNAME= nagaina -PORTVERSION= 0.1.2 -DISTVERSIONSUFFIX= -sources -PORTREVISION= 10 -CATEGORIES= deskutils -MASTER_SITES= GOOGLE_CODE - -MAINTAINER= ports@FreeBSD.org -COMMENT= Notes-taking application based on Qt 4 - -LICENSE= GPLv2 - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -LIB_DEPENDS= libpthread-stubs.so:devel/libpthread-stubs \ - libpcre.so:devel/pcre \ - libpng.so:graphics/png \ - libfreetype.so:print/freetype2 \ - libexpat.so:textproc/expat2 \ - libfontconfig.so:x11-fonts/fontconfig - -OPTIONS_DEFINE= DOCS - -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} - -USES= gettext iconv qmake -USE_GNOME= glib20 -USE_QT4= corelib gui xml moc_build rcc_build uic_build -USE_XORG= ice sm x11 xau xcb xdmcp xext xrender - -PORTDOCS= CHANGELOG TODO -PLIST_FILES= bin/${PORTNAME} share/pixmaps/${PORTNAME}.png - -DESKTOP_ENTRIES= "Nagaina" \ - "Notes-taking application" \ - "${PREFIX}/share/pixmaps/${PORTNAME}.png" \ - "${PORTNAME}" \ - "Qt;Office;Utility;" \ - "true" - -post-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin - ${INSTALL_DATA} ${WRKSRC}/images/${PORTNAME}.png ${STAGEDIR}${PREFIX}/share/pixmaps - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} - -.include <bsd.port.mk> diff --git a/deskutils/nagaina/distinfo b/deskutils/nagaina/distinfo deleted file mode 100644 index 04b97dfcfe77..000000000000 --- a/deskutils/nagaina/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (nagaina-0.1.2-sources.tar.gz) = 4a6f1bf2c434c575882cd093336c73fd418679e468fc2c6a66b7116a4b116a60 -SIZE (nagaina-0.1.2-sources.tar.gz) = 86709 diff --git a/deskutils/nagaina/pkg-descr b/deskutils/nagaina/pkg-descr deleted file mode 100644 index 785809a45792..000000000000 --- a/deskutils/nagaina/pkg-descr +++ /dev/null @@ -1,8 +0,0 @@ -Nagaina is a notes-taking application. - -Features -* Classifications of notes in categories; -* Rich text editor, with support for font, font size, font color, alignment... -* Style editor; - -WWW: http://code.google.com/p/nagaina/ diff --git a/deskutils/plasma-applet-playwolf/Makefile b/deskutils/plasma-applet-playwolf/Makefile deleted file mode 100644 index 4f4f2d9567de..000000000000 --- a/deskutils/plasma-applet-playwolf/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# $FreeBSD$ - -PORTNAME= playwolf -PORTVERSION= 0.8.1 -PORTREVISION= 7 -CATEGORIES= deskutils kde -MASTER_SITES= GOOGLE_CODE -PKGNAMEPREFIX= plasma-applet- - -MAINTAINER= jhale@FreeBSD.org -COMMENT= Amarok 2.x plasma applet for KDE4 - -LICENSE= GPLv2+ -LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -USES= cmake kde:4 tar:bzip2 -USE_KDE= automoc4 kdelibs -USE_QT4= gui dbus network opengl phonon svg webkit xml xmlpatterns \ - qmake_build moc_build rcc_build uic_build - -PLIST_FILES= lib/kde4/plasma_applet_playwolf.so \ - share/kde4/services/plasma-applet-playwolf.desktop - -WRKSRC= ${WRKDIR}/${PORTNAME} - -ADD_NEWLINE_TO= flowlayout.cpp \ - flowlayout.h \ - lyricswidget.cpp \ - playwolf.cpp \ - playwolf.h \ - wolfbuttons.cpp \ - wolflabel.h - -post-patch: -.for i in ${ADD_NEWLINE_TO} - @${ECHO_CMD} >> ${WRKSRC}/${i} -.endfor - -.include <bsd.port.mk> diff --git a/deskutils/plasma-applet-playwolf/distinfo b/deskutils/plasma-applet-playwolf/distinfo deleted file mode 100644 index 358c5d5cf910..000000000000 --- a/deskutils/plasma-applet-playwolf/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (playwolf-0.8.1.tar.bz2) = f41a39f8f4078baa9a7e9fa44f0a81164f8b468eddfc06f5d73cf491a58dad04 -SIZE (playwolf-0.8.1.tar.bz2) = 22840 diff --git a/deskutils/plasma-applet-playwolf/files/patch-infomanager.cpp b/deskutils/plasma-applet-playwolf/files/patch-infomanager.cpp deleted file mode 100644 index f4dd520615e4..000000000000 --- a/deskutils/plasma-applet-playwolf/files/patch-infomanager.cpp +++ /dev/null @@ -1,24 +0,0 @@ ---- ./infomanager.cpp.orig 2010-01-13 16:32:23.000000000 -0500 -+++ ./infomanager.cpp 2010-02-05 01:27:39.000000000 -0500 -@@ -22,6 +22,7 @@ - #include <QtGui/QGraphicsWidget> - - #include <KDebug> -+#include <KStandardDirs> - - #include "playercontroller.h" - -@@ -105,9 +106,11 @@ - if (metadata.value("arturl").toString() != QString()) { - emit updateCover(metadata.value("arturl").toString()); - } else if (mode == QString("lastfm")) { -- emit updateCover("file:///usr/share/apps/amarok/images/lastfm-default-cover.png"); -+ QString lastfmcover = KGlobal::dirs()->findResource("data", QString("amarok/images/lastfm-default-cover.png")); -+ emit updateCover(lastfmcover); - } else { -- emit updateCover("file:///usr/share/apps/amarok/images/nocover.png"); -+ QString nocover = KGlobal::dirs()->findResource("data", QString("amarok/images/nocover.png")); -+ emit updateCover(nocover); - } - - emit updateInfos(metadata.value("artist").toString(), diff --git a/deskutils/plasma-applet-playwolf/files/patch-wolflabel.cpp b/deskutils/plasma-applet-playwolf/files/patch-wolflabel.cpp deleted file mode 100644 index 108d250c5a97..000000000000 --- a/deskutils/plasma-applet-playwolf/files/patch-wolflabel.cpp +++ /dev/null @@ -1,19 +0,0 @@ ---- wolflabel.cpp.orig 2010-01-13 21:33:08 UTC -+++ wolflabel.cpp -@@ -24,6 +24,7 @@ - #include <QtGui/QGraphicsItemAnimation> - #include <QtGui/QGraphicsSceneResizeEvent> - #include <QtGui/QLabel> -+#include <QtCore/qmath.h> - - #include <KIO/Job> - #include <KIO/NetAccess> -@@ -195,7 +196,7 @@ void WolfLabel::paint(QPainter *painter, - m_animation->setPropertyName("xOffset"); - m_animation->setTargetObject(this); - } -- m_animation->setDuration((2 * abs(x) + SPACING) * 150); -+ m_animation->setDuration((2 * qFabs(x) + SPACING) * 150); - m_animation->setNewStartValue(x - SPACING); - m_animation->setNewEndValue(SPACING); - if (m_animation->state() != QAbstractAnimation::Running) { diff --git a/deskutils/plasma-applet-playwolf/pkg-descr b/deskutils/plasma-applet-playwolf/pkg-descr deleted file mode 100644 index dedaadce87f0..000000000000 --- a/deskutils/plasma-applet-playwolf/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -PlayWolf is a plasma applet for KDE4 that allows you to control Amarok 2.x from -your desktop and view the song that is currently playing. - -WWW: http://www.kde-look.org/content/show.php?content=93882 diff --git a/deskutils/superswitcher/Makefile b/deskutils/superswitcher/Makefile deleted file mode 100644 index 3326a7941abd..000000000000 --- a/deskutils/superswitcher/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# Created by: Remington Lang <MrL0Lz@gmail.com> -# $FreeBSD$ - -PORTNAME= superswitcher -PORTVERSION= 0.6 -PORTREVISION= 2 -CATEGORIES= deskutils gnome -MASTER_SITES= GOOGLE_CODE - -MAINTAINER= ports@FreeBSD.org -COMMENT= Alt-Tab replacement - -LICENSE= GPLv2 - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib - -USES= gmake pkgconfig -USE_GNOME= gconf2 intltool libwnck -GNU_CONFIGURE= yes - -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -PLIST_FILES= bin/superswitcher \ - share/dbus-1/services/superswitcher.SuperSwitcher.service - -post-patch: - @${REINPLACE_CMD} -e \ - 's/x11//g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - '/_DISABLE_DEPRECATED/d' ${WRKSRC}/src/Makefile.in - @${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \ - ${WRKSRC}/src/dbus-object.h ${WRKSRC}/src/forward_declarations.h - -post-install: - @${RMDIR} ${STAGEDIR}${PREFIX}/lib/locale - -.include <bsd.port.mk> diff --git a/deskutils/superswitcher/distinfo b/deskutils/superswitcher/distinfo deleted file mode 100644 index 6b9ee61d2833..000000000000 --- a/deskutils/superswitcher/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (superswitcher-0.6.tar.gz) = 232b98d1a9443fcf4f969cf4cf00df3908c3ccb55f36059391da68873d514599 -SIZE (superswitcher-0.6.tar.gz) = 183184 diff --git a/deskutils/superswitcher/files/patch-src__xinerama.c b/deskutils/superswitcher/files/patch-src__xinerama.c deleted file mode 100644 index 16580ff97c68..000000000000 --- a/deskutils/superswitcher/files/patch-src__xinerama.c +++ /dev/null @@ -1,46 +0,0 @@ -# -# Fix build on 4.x -# ---- ./src/xinerama.c.orig Sat May 20 18:36:30 2006 -+++ ./src/xinerama.c Sat May 20 18:38:45 2006 -@@ -22,24 +22,26 @@ - int minimum_width; - SSXineramaScreen *screens; - SSXinerama *xinerama; -- -- minimum_width = 0; -+ int x_screen; - - #ifdef HAVE_XINERAMA - gboolean xinerama_is_active = XineramaIsActive (x_display); -+ XineramaScreenInfo *xsi_array; -+ XineramaScreenInfo *xsi; - #else - gboolean xinerama_is_active = FALSE; - #endif - -+ minimum_width = 0; -+ - if (xinerama_is_active) { - #ifdef HAVE_XINERAMA -- XineramaScreenInfo *xsi_array = -- XineramaQueryScreens(x_display, &num_screens); -+ xsi_array = XineramaQueryScreens(x_display, &num_screens); - screens = g_new (SSXineramaScreen, num_screens); - - int i; - for (i = 0; i < num_screens; i++) { -- XineramaScreenInfo *xsi = &xsi_array[i]; -+ xsi = &xsi_array[i]; - screens[i].x = xsi->x_org; - screens[i].y = xsi->y_org; - screens[i].width = xsi->width; -@@ -54,7 +56,7 @@ - #endif - } else { - num_screens = 1; -- int x_screen = DefaultScreen (x_display); -+ x_screen = DefaultScreen (x_display); - screens = g_new (SSXineramaScreen, num_screens); - screens[0].x = 0; - screens[0].y = 0; diff --git a/deskutils/superswitcher/pkg-descr b/deskutils/superswitcher/pkg-descr deleted file mode 100644 index c10812b6cd83..000000000000 --- a/deskutils/superswitcher/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -A more feature-full replacement of thr Alt-Tab window switching behavior. - -Superswitcher uses the "Super" key, also known as the Windows key to switch -between windows and workspaces. - -WWW: http://code.google.com/p/superswitcher/ diff --git a/deskutils/vboxgtk/Makefile b/deskutils/vboxgtk/Makefile deleted file mode 100644 index b6da5574e69e..000000000000 --- a/deskutils/vboxgtk/Makefile +++ /dev/null @@ -1,38 +0,0 @@ -# Created by: Alexander Logvinov <avl@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= vboxgtk -PORTVERSION= 0.8.2 -PORTREVISION= 1 -CATEGORIES= deskutils emulators gnome -MASTER_SITES= GOOGLE_CODE - -MAINTAINER= ports@FreeBSD.org -COMMENT= GTK frontend for VirtualBox - -BROKEN= Unfetchable (google code has gone away) -DEPRECATED= Unfetchable for more than six months (google code has gone away) -EXPIRATION_DATE= 2017-04-30 - -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xpcom/vboxxpcom.py:emulators/virtualbox-ose - -USES= python -USE_PYTHON= distutils autoplist -USE_GNOME= gtk30 intltool -INSTALLS_ICONS= yes - -OPTIONS_DEFINE= NLS - -NLS_USES= gettext - -.include <bsd.port.options.mk> - -post-patch: -.if ! ${PORT_OPTIONS:MNLS} - @${REINPLACE_CMD} -e '/self.add_mo_files/d' \ - -e '/os.system("intltool/d' ${WRKSRC}/setup.py -.endif - @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ - s|%%PYTHON_SITELIBDIR%%|${PYTHON_SITELIBDIR}|g' ${WRKSRC}/bin/${PORTNAME} - -.include <bsd.port.mk> diff --git a/deskutils/vboxgtk/distinfo b/deskutils/vboxgtk/distinfo deleted file mode 100644 index e08e22d0cc8f..000000000000 --- a/deskutils/vboxgtk/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (vboxgtk-0.8.2.tar.gz) = 317d7b55cc0c98bf3c1fe294a8fc62668709ae14f12b3bf3b32d5fa33451fe95 -SIZE (vboxgtk-0.8.2.tar.gz) = 43717 diff --git a/deskutils/vboxgtk/files/patch-bin_vboxgtk b/deskutils/vboxgtk/files/patch-bin_vboxgtk deleted file mode 100644 index c36a9a226616..000000000000 --- a/deskutils/vboxgtk/files/patch-bin_vboxgtk +++ /dev/null @@ -1,11 +0,0 @@ ---- bin/vboxgtk.orig 2009-09-04 21:39:38.000000000 +1000 -+++ bin/vboxgtk 2009-09-04 21:41:14.000000000 +1000 -@@ -54,7 +54,7 @@ - vbox_program_path = line.lstrip(head).rstrip('\n') - break - if vbox_program_path is None: -- dir_list = ('/usr/lib/virtualbox-ose', -+ dir_list = ('%%LOCALBASE%%/lib/virtualbox', - '/usr/lib/virtualbox', - '/usr/local/lib/virtualbox', - '/opt/VirtualBox') diff --git a/deskutils/vboxgtk/files/patch-vboxgtk___init__.py b/deskutils/vboxgtk/files/patch-vboxgtk___init__.py deleted file mode 100644 index e1a1235ab1c5..000000000000 --- a/deskutils/vboxgtk/files/patch-vboxgtk___init__.py +++ /dev/null @@ -1,11 +0,0 @@ ---- vboxgtk/__init__.py.orig 2009-06-20 00:16:28.000000000 +1000 -+++ vboxgtk/__init__.py 2009-09-04 21:47:01.000000000 +1000 -@@ -37,8 +37,6 @@ - gettext_domain = 'vboxgtk' - gettext.install(gettext_domain, paths.locale_path, unicode = True) - locale.setlocale(locale.LC_ALL, '') --locale.bindtextdomain(gettext_domain, paths.locale_path) --locale.textdomain(gettext_domain) - - - # Import main for the launch script diff --git a/deskutils/vboxgtk/pkg-descr b/deskutils/vboxgtk/pkg-descr deleted file mode 100644 index 0767e6f6b3d2..000000000000 --- a/deskutils/vboxgtk/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -VBoxGtk is a simple GTK frontend for VirtualBox. Its objective is to -support only the basic features of VirtualBox and keep the interface -simple and clean. - -WWW: http://vboxgtk.sourceforge.net/ |