diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-01-16 02:20:28 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-01-16 02:20:28 +0800 |
commit | b0893bd850aaf28d0e6eaeb856309ff59c3d9eff (patch) | |
tree | 597a3b3555c5425aefaf2f1152d3c07179eb1d9e | |
parent | b90677a286a86aa5ecf7dc96338316614b6692c9 (diff) | |
download | marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.tar marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.tar.gz marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.tar.bz2 marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.tar.lz marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.tar.xz marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.tar.zst marcuscom-ports-b0893bd850aaf28d0e6eaeb856309ff59c3d9eff.zip |
Update to 2.91.5.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15029 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | x11/gnome-shell/Makefile | 44 | ||||
-rw-r--r-- | x11/gnome-shell/distinfo | 2 | ||||
-rw-r--r-- | x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c | 14 | ||||
-rw-r--r-- | x11/gnome-shell/pkg-descr | 3 | ||||
-rw-r--r-- | x11/gnome-shell/pkg-plist | 157 |
5 files changed, 220 insertions, 0 deletions
diff --git a/x11/gnome-shell/Makefile b/x11/gnome-shell/Makefile new file mode 100644 index 000000000..c71340921 --- /dev/null +++ b/x11/gnome-shell/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: gnome-shell +# Date created: 14 Aug 2009 +# Whom: Pawel Worach <pawel.worach@gmail.com> +# +# $FreeBSD$ +# $MCom: ports/x11/gnome-shell/Makefile,v 1.16 2010/11/20 15:05:25 kwm Exp $ +# + +PORTNAME= gnome-shell +PORTVERSION= 2.91.5 +CATEGORIES= x11 gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome3 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Next generation GNOME desktop shell + +LIB_DEPENDS= startup-notification-1.0:${PORTSDIR}/x11/startup-notification \ + mutter-private.0:${PORTSDIR}/x11-wm/mutter \ + pulse.0:${PORTSDIR}/audio/pulseaudio \ + croco-0.6.3:${PORTSDIR}/textproc/libcroco \ + gbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ + clutter-glx-1.0:${PORTSDIR}/graphics/clutter \ + gjs-gi:${PORTSDIR}/lang/gjs +#RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/dbus-python.pc:${PORTSDIR}/devel/py-dbus \ +# glxinfo:${PORTSDIR}/graphics/mesa-demos + +USE_BZIP2= yes +USE_XORG= x11 xfixes sm +USE_GETTEXT= yes +USE_GMAKE= yes +USE_AUTOTOOLS= libtool +USE_GNOME= gnomeprefix gnomehack intlhack gtk30 gconf2 gnomemenus \ + gnomedesktop3 ltverhack +USE_GSTREAMER= theora +USE_LDCONFIG= yes + +GLIB_SCHEMAS= org.gnome.accessibility.magnifier.gschema.xml \ + org.gnome.shell.gschema.xml +GCONF_SCHEMAS= gnome-shell.schemas + +MAN1= gnome-shell.1 + +.include <bsd.port.mk> diff --git a/x11/gnome-shell/distinfo b/x11/gnome-shell/distinfo new file mode 100644 index 000000000..db36dd36b --- /dev/null +++ b/x11/gnome-shell/distinfo @@ -0,0 +1,2 @@ +SHA256 (gnome3/gnome-shell-2.91.5.tar.bz2) = 0c10dec4c2e0ddf236646a18c3a8481e2ea29dce67c145c56375cba6f7be09e3 +SIZE (gnome3/gnome-shell-2.91.5.tar.bz2) = 844825 diff --git a/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c b/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c new file mode 100644 index 000000000..10a75f2bd --- /dev/null +++ b/x11/gnome-shell/files/patch-src_gdmuser_gdm-user-manager.c @@ -0,0 +1,14 @@ +--- src/gdmuser/gdm-user-manager.c.orig 2010-12-08 21:06:50.000000000 +0000 ++++ src/gdmuser/gdm-user-manager.c 2011-01-15 18:39:35.000000000 +0000 +@@ -2230,9 +2230,9 @@ reload_passwd_file (GHashTable *valid_sh + + g_debug ("GdmUserManager: include_all is TRUE"); + +- for (pwent = fgetpwent (fp); ++ for (pwent = getpwent (); + pwent != NULL; +- pwent = fgetpwent (fp)) { ++ pwent = getpwent ()) { + + /* Skip users below MinimalUID... */ + if (pwent->pw_uid < FALLBACK_MINIMAL_UID) { diff --git a/x11/gnome-shell/pkg-descr b/x11/gnome-shell/pkg-descr new file mode 100644 index 000000000..693aa3b6e --- /dev/null +++ b/x11/gnome-shell/pkg-descr @@ -0,0 +1,3 @@ +Next generation GNOME desktop shell + +WWW: http://live.gnome.org/GnomeShell diff --git a/x11/gnome-shell/pkg-plist b/x11/gnome-shell/pkg-plist new file mode 100644 index 000000000..69da9c1e3 --- /dev/null +++ b/x11/gnome-shell/pkg-plist @@ -0,0 +1,157 @@ +bin/gnome-shell +etc/xdg/menus/gs-applications.menu +lib/gnome-shell/Gdm-1.0.typelib +lib/gnome-shell/Gvc-1.0.typelib +lib/gnome-shell/Shell-0.1.typelib +lib/gnome-shell/St-1.0.typelib +share/applications/gnome-shell.desktop +%%DATADIR%%/images/close-black.svg +%%DATADIR%%/images/magnifier.svg +%%DATADIR%%/js/misc/config.js +%%DATADIR%%/js/misc/docInfo.js +%%DATADIR%%/js/misc/fileUtils.js +%%DATADIR%%/js/misc/format.js +%%DATADIR%%/js/misc/gnomeSession.js +%%DATADIR%%/js/misc/params.js +%%DATADIR%%/js/misc/telepathy.js +%%DATADIR%%/js/misc/utils.js +%%DATADIR%%/js/perf/core.js +%%DATADIR%%/js/ui/altTab.js +%%DATADIR%%/js/ui/appDisplay.js +%%DATADIR%%/js/ui/appFavorites.js +%%DATADIR%%/js/ui/boxpointer.js +%%DATADIR%%/js/ui/calendar.js +%%DATADIR%%/js/ui/chrome.js +%%DATADIR%%/js/ui/ctrlAltTab.js +%%DATADIR%%/js/ui/dash.js +%%DATADIR%%/js/ui/dnd.js +%%DATADIR%%/js/ui/docDisplay.js +%%DATADIR%%/js/ui/environment.js +%%DATADIR%%/js/ui/extensionSystem.js +%%DATADIR%%/js/ui/genericDisplay.js +%%DATADIR%%/js/ui/iconGrid.js +%%DATADIR%%/js/ui/lightbox.js +%%DATADIR%%/js/ui/link.js +%%DATADIR%%/js/ui/lookingGlass.js +%%DATADIR%%/js/ui/magnifier.js +%%DATADIR%%/js/ui/magnifierDBus.js +%%DATADIR%%/js/ui/main.js +%%DATADIR%%/js/ui/messageTray.js +%%DATADIR%%/js/ui/notificationDaemon.js +%%DATADIR%%/js/ui/overview.js +%%DATADIR%%/js/ui/panel.js +%%DATADIR%%/js/ui/panelMenu.js +%%DATADIR%%/js/ui/placeDisplay.js +%%DATADIR%%/js/ui/popupMenu.js +%%DATADIR%%/js/ui/runDialog.js +%%DATADIR%%/js/ui/scripting.js +%%DATADIR%%/js/ui/search.js +%%DATADIR%%/js/ui/searchDisplay.js +%%DATADIR%%/js/ui/shellDBus.js +%%DATADIR%%/js/ui/status/accessibility.js +%%DATADIR%%/js/ui/status/bluetooth.js +%%DATADIR%%/js/ui/status/power.js +%%DATADIR%%/js/ui/status/volume.js +%%DATADIR%%/js/ui/statusIconDispatcher.js +%%DATADIR%%/js/ui/statusMenu.js +%%DATADIR%%/js/ui/telepathyClient.js +%%DATADIR%%/js/ui/tweener.js +%%DATADIR%%/js/ui/viewSelector.js +%%DATADIR%%/js/ui/windowAttentionHandler.js +%%DATADIR%%/js/ui/windowManager.js +%%DATADIR%%/js/ui/workspace.js +%%DATADIR%%/js/ui/workspaceSwitcherPopup.js +%%DATADIR%%/js/ui/workspacesView.js +%%DATADIR%%/js/ui/xdndHandler.js +%%DATADIR%%/shaders/dim-window.glsl +%%DATADIR%%/theme/add-workspace.svg +%%DATADIR%%/theme/close-window.svg +%%DATADIR%%/theme/close.svg +%%DATADIR%%/theme/corner-ripple.png +%%DATADIR%%/theme/dash-placeholder.svg +%%DATADIR%%/theme/dialog-error.svg +%%DATADIR%%/theme/filter-selected.svg +%%DATADIR%%/theme/gnome-shell.css +%%DATADIR%%/theme/mosaic-view-active.svg +%%DATADIR%%/theme/mosaic-view.svg +%%DATADIR%%/theme/move-window-on-new.svg +%%DATADIR%%/theme/process-working.png +%%DATADIR%%/theme/remove-workspace.svg +%%DATADIR%%/theme/running-indicator.svg +%%DATADIR%%/theme/scroll-button-down-hover.png +%%DATADIR%%/theme/scroll-button-down.png +%%DATADIR%%/theme/scroll-button-up-hover.png +%%DATADIR%%/theme/scroll-button-up.png +%%DATADIR%%/theme/scroll-hhandle.svg +%%DATADIR%%/theme/scroll-vhandle.svg +%%DATADIR%%/theme/section-more-open.svg +%%DATADIR%%/theme/section-more.svg +%%DATADIR%%/theme/separator-white.png +%%DATADIR%%/theme/single-view-active.svg +%%DATADIR%%/theme/single-view.svg +%%DATADIR%%/theme/toggle-off-intl.svg +%%DATADIR%%/theme/toggle-off-us.svg +%%DATADIR%%/theme/toggle-on-intl.svg +%%DATADIR%%/theme/toggle-on-us.svg +%%DATADIR%%/theme/ws-switch-arrow-left.svg +%%DATADIR%%/theme/ws-switch-arrow-right.svg +share/locale/ar/LC_MESSAGES/gnome-shell.mo +share/locale/bg/LC_MESSAGES/gnome-shell.mo +share/locale/ca/LC_MESSAGES/gnome-shell.mo +share/locale/cs/LC_MESSAGES/gnome-shell.mo +share/locale/da/LC_MESSAGES/gnome-shell.mo +share/locale/de/LC_MESSAGES/gnome-shell.mo +share/locale/el/LC_MESSAGES/gnome-shell.mo +share/locale/en_GB/LC_MESSAGES/gnome-shell.mo +share/locale/es/LC_MESSAGES/gnome-shell.mo +share/locale/et/LC_MESSAGES/gnome-shell.mo +share/locale/fa/LC_MESSAGES/gnome-shell.mo +share/locale/fi/LC_MESSAGES/gnome-shell.mo +share/locale/fr/LC_MESSAGES/gnome-shell.mo +share/locale/ga/LC_MESSAGES/gnome-shell.mo +share/locale/gl/LC_MESSAGES/gnome-shell.mo +share/locale/he/LC_MESSAGES/gnome-shell.mo +share/locale/hu/LC_MESSAGES/gnome-shell.mo +share/locale/id/LC_MESSAGES/gnome-shell.mo +share/locale/it/LC_MESSAGES/gnome-shell.mo +share/locale/ja/LC_MESSAGES/gnome-shell.mo +share/locale/ko/LC_MESSAGES/gnome-shell.mo +share/locale/lt/LC_MESSAGES/gnome-shell.mo +share/locale/nb/LC_MESSAGES/gnome-shell.mo +share/locale/nl/LC_MESSAGES/gnome-shell.mo +share/locale/nn/LC_MESSAGES/gnome-shell.mo +share/locale/pa/LC_MESSAGES/gnome-shell.mo +share/locale/pl/LC_MESSAGES/gnome-shell.mo +share/locale/pt/LC_MESSAGES/gnome-shell.mo +share/locale/pt_BR/LC_MESSAGES/gnome-shell.mo +share/locale/ro/LC_MESSAGES/gnome-shell.mo +share/locale/ru/LC_MESSAGES/gnome-shell.mo +share/locale/sl/LC_MESSAGES/gnome-shell.mo +share/locale/sr/LC_MESSAGES/gnome-shell.mo +share/locale/sr@latin/LC_MESSAGES/gnome-shell.mo +share/locale/sv/LC_MESSAGES/gnome-shell.mo +share/locale/ta/LC_MESSAGES/gnome-shell.mo +share/locale/th/LC_MESSAGES/gnome-shell.mo +share/locale/tr/LC_MESSAGES/gnome-shell.mo +share/locale/ug/LC_MESSAGES/gnome-shell.mo +share/locale/uk/LC_MESSAGES/gnome-shell.mo +share/locale/vi/LC_MESSAGES/gnome-shell.mo +share/locale/zh_CN/LC_MESSAGES/gnome-shell.mo +share/locale/zh_HK/LC_MESSAGES/gnome-shell.mo +share/locale/zh_TW/LC_MESSAGES/gnome-shell.mo +@dirrm %%DATADIR%%/theme +@dirrm %%DATADIR%%/shaders +@dirrm %%DATADIR%%/js/ui/status +@dirrm %%DATADIR%%/js/ui +@dirrm %%DATADIR%%/js/perf +@dirrm %%DATADIR%%/js/misc +@dirrm %%DATADIR%%/js +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%% +@dirrm lib/gnome-shell +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin |