diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-22 23:42:39 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-22 23:42:39 +0800 |
commit | f02564416df180c721ada4f2f277f528e97ad844 (patch) | |
tree | 81bda1ddea68213210ea685cca53039574e4e1ff | |
parent | d27e3af5abf157fcd6a544cc079a11ec988ac0cd (diff) | |
download | marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.tar marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.tar.gz marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.tar.bz2 marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.tar.lz marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.tar.xz marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.tar.zst marcuscom-ports-f02564416df180c721ada4f2f277f528e97ad844.zip |
Update to 2.15.90.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7132 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | x11/gnome-applets/Makefile | 7 | ||||
-rw-r--r-- | x11/gnome-applets/distinfo | 6 | ||||
-rw-r--r-- | x11/gnome-applets/files/patch-cpufreq-freebsd | 88 | ||||
-rw-r--r-- | x11/gnome-applets/files/patch-invest-applet_invest___init__.py | 11 | ||||
-rw-r--r-- | x11/gnome-applets/pkg-plist | 107 |
5 files changed, 149 insertions, 70 deletions
diff --git a/x11/gnome-applets/Makefile b/x11/gnome-applets/Makefile index 18ac48308..c2ad16618 100644 --- a/x11/gnome-applets/Makefile +++ b/x11/gnome-applets/Makefile @@ -3,11 +3,11 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/x11/gnome-applets/Makefile,v 1.133 2006/07/28 18:42:28 marcus Exp $ +# $MCom: ports/x11/gnome-applets/Makefile,v 1.134 2006/08/07 21:15:59 ahze Exp $ # PORTNAME= gnome-applets -PORTVERSION= 2.15.3 +PORTVERSION= 2.15.90 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -37,7 +37,8 @@ USE_GNOME= gnomeprefix gnomehack intlhack gnomepanel \ WANT_GNOME= yes USE_GSTREAMER= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-gstreamer=0.10 +CONFIGURE_ARGS= --with-gstreamer=0.10 \ + --enable-stickynotes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \ FREEBSD_SYS=${FREEBSD_SYS} diff --git a/x11/gnome-applets/distinfo b/x11/gnome-applets/distinfo index 75939faeb..89502f5eb 100644 --- a/x11/gnome-applets/distinfo +++ b/x11/gnome-applets/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gnome-applets-2.15.3.tar.bz2) = 88814125b056b32d7d34b8ac75cfbf7e -SHA256 (gnome2/gnome-applets-2.15.3.tar.bz2) = 132a92f73d90460f7738094678efa8b0ca470e4b3e92874bcc99fa9917d117d2 -SIZE (gnome2/gnome-applets-2.15.3.tar.bz2) = 6945508 +MD5 (gnome2/gnome-applets-2.15.90.tar.bz2) = 421eda161541b42d42ea04c59b9ee4f1 +SHA256 (gnome2/gnome-applets-2.15.90.tar.bz2) = 506aff7fb8617100c281d041c50cbc95c677ac19b22cfd041948a670e591947b +SIZE (gnome2/gnome-applets-2.15.90.tar.bz2) = 6695784 diff --git a/x11/gnome-applets/files/patch-cpufreq-freebsd b/x11/gnome-applets/files/patch-cpufreq-freebsd index 2d77112dd..53841b6d7 100644 --- a/x11/gnome-applets/files/patch-cpufreq-freebsd +++ b/x11/gnome-applets/files/patch-cpufreq-freebsd @@ -63,49 +63,6 @@ NULL }; static const gchar *const documenters[] = { ---- cpufreq/src/cpufreq-utils.c.orig Sat Jun 17 14:02:11 2006 -+++ cpufreq/src/cpufreq-utils.c Sat Jun 17 14:02:12 2006 -@@ -21,11 +21,32 @@ - - #include <gtk/gtkmessagedialog.h> - #include <sys/types.h> -+#ifdef __FreeBSD__ -+#include <sys/sysctl.h> -+#endif /* __FreeBSD__ */ - #include <sys/stat.h> - #include <unistd.h> - - #include "cpufreq-utils.h" - -+#ifdef __FreeBSD__ -+guint -+cpufreq_utils_get_n_cpus (void) -+{ -+ size_t len; -+ static guint n_cpus = 0; -+ -+ if (n_cpus > 0) -+ return n_cpus; -+ -+ len = sizeof (n_cpus); -+ if (sysctlbyname ("hw.ncpu", &n_cpus, &len, NULL, 0) == -1) { -+ return 1; -+ } -+ -+ return n_cpus; -+} -+#else - guint - cpufreq_utils_get_n_cpus (void) - { -@@ -68,6 +89,7 @@ cpufreq_utils_get_n_cpus (void) - - return 1; - } -+#endif /* __FreeBSD__ */ - - void - cpufreq_utils_display_error (const gchar *message, --- cpufreq/src/Makefile.in.orig Sat Jun 17 13:42:50 2006 +++ cpufreq/src/Makefile.in Sat Jun 17 14:03:45 2006 @@ -62,7 +62,8 @@ am__cpufreq_applet_SOURCES_DIST = cpufre @@ -425,3 +382,48 @@ return monitor; } +--- cpufreq/src/cpufreq-utils.c.orig Sat Aug 12 21:26:50 2006 ++++ cpufreq/src/cpufreq-utils.c Tue Aug 22 11:07:32 2006 +@@ -22,6 +22,9 @@ + #include <glib.h> + #include <gtk/gtkmessagedialog.h> + #include <sys/types.h> ++#ifdef __FreeBSD__ ++#include <sys/sysctl.h> ++#endif + #include <sys/stat.h> + #include <fcntl.h> + #include <unistd.h> +@@ -30,6 +33,24 @@ + + #include "cpufreq-utils.h" + ++#ifdef __FreeBSD__ ++guint ++cpufreq_utils_get_n_cpus (void) ++{ ++ size_t len; ++ static guint n_cpus = 0; ++ ++ if (n_cpus > 0) ++ return n_cpus; ++ ++ len = sizeof (n_cpus); ++ if (sysctlbyname ("hw.ncpu", &n_cpus, &len, NULL, 0) == -1) { ++ return 1; ++ } ++ ++ return n_cpus; ++} ++#else + guint + cpufreq_utils_get_n_cpus (void) + { +@@ -72,6 +93,7 @@ cpufreq_utils_get_n_cpus (void) + + return 1; + } ++#endif /* __FreeBSD__ */ + + void + cpufreq_utils_display_error (const gchar *message, diff --git a/x11/gnome-applets/files/patch-invest-applet_invest___init__.py b/x11/gnome-applets/files/patch-invest-applet_invest___init__.py deleted file mode 100644 index 8a73de7c0..000000000 --- a/x11/gnome-applets/files/patch-invest-applet_invest___init__.py +++ /dev/null @@ -1,11 +0,0 @@ ---- invest-applet/invest/__init__.py.orig Wed Jul 26 17:39:53 2006 -+++ invest-applet/invest/__init__.py Wed Jul 26 17:40:21 2006 -@@ -22,7 +22,7 @@ if UNINSTALLED_INVEST: - SHARED_DATA_DIR = abspath(join(dirname(__file__), '..', 'data')) - GLADE_DATA_DIR = SHARED_DATA_DIR - else: -- SHARED_DATA_DIR = join(DATA_DIR, "gnome-applets", "invest-applet") -+ SHARED_DATA_DIR = join(DATA_DIR, "gnome-applets") - GLADE_DATA_DIR = join(SHARED_DATA_DIR, "glade") - print "Data Dir: %s" % SHARED_DATA_DIR - diff --git a/x11/gnome-applets/pkg-plist b/x11/gnome-applets/pkg-plist index 33b39d137..1635d2b40 100644 --- a/x11/gnome-applets/pkg-plist +++ b/x11/gnome-applets/pkg-plist @@ -95,9 +95,6 @@ share/gnome/gnome-2.0/ui/GNOME_MultiloadApplet.xml share/gnome/gnome-2.0/ui/GNOME_Panel_TrashApplet.xml share/gnome/gnome-2.0/ui/GNOME_StickyNotesApplet.xml %%PYTHON%%share/gnome/gnome-2.0/ui/Invest_Applet.xml -%%PYTHON%%share/gnome/gnome-applets/art/invest-16.png -%%PYTHON%%share/gnome/gnome-applets/art/invest-button.png -%%PYTHON%%share/gnome/gnome-applets/art/invest.svg share/gnome/gnome-applets/geyes/Bizarre/Bizarre-eye.png share/gnome/gnome-applets/geyes/Bizarre/Bizarre-pupil.png share/gnome/gnome-applets/geyes/Bizarre/config @@ -125,6 +122,9 @@ share/gnome/gnome-applets/glade/stickynotes.glade share/gnome/gnome-applets/glade/trashapplet.glade share/gnome/gnome-applets/gweather/Locations.xml share/gnome/gnome-applets/gweather/locations.dtd +%%PYTHON%%share/gnome/gnome-applets/invest-applet/invest-16.png +%%PYTHON%%share/gnome/gnome-applets/invest-applet/invest-button.png +%%PYTHON%%share/gnome/gnome-applets/invest-applet/invest.svg share/gnome/help/accessx-status/C/accessx-status.xml share/gnome/help/accessx-status/C/figures/accessx-status-applet.png share/gnome/help/accessx-status/C/figures/accessx-status-disabled.png @@ -186,6 +186,18 @@ share/gnome/help/accessx-status/it/figures/accessx_sticky-keys.png share/gnome/help/accessx-status/it/figures/accessx_sticky-meta-key.png share/gnome/help/accessx-status/it/figures/accessx_sticky-shift-key.png share/gnome/help/accessx-status/it/figures/accessx_sticky-windows-key.png +share/gnome/help/accessx-status/nl/accessx-status.xml +share/gnome/help/accessx-status/nl/figures/accessx-status-applet.png +share/gnome/help/accessx-status/nl/figures/accessx-status-disabled.png +share/gnome/help/accessx-status/nl/figures/accessx_bounce-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_mouse-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_slow-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-altGr-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-ctrl-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-keys.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-meta-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-shift-key.png +share/gnome/help/accessx-status/nl/figures/accessx_sticky-windows-key.png share/gnome/help/accessx-status/sv/accessx-status.xml share/gnome/help/accessx-status/sv/figures/accessx-status-applet.png share/gnome/help/accessx-status/sv/figures/accessx-status-disabled.png @@ -641,6 +653,7 @@ share/gnome/omf/accessx-status/accessx-status-bg.omf share/gnome/omf/accessx-status/accessx-status-es.omf share/gnome/omf/accessx-status/accessx-status-fr.omf share/gnome/omf/accessx-status/accessx-status-it.omf +share/gnome/omf/accessx-status/accessx-status-nl.omf share/gnome/omf/accessx-status/accessx-status-sv.omf share/gnome/omf/accessx-status/accessx-status-uk.omf %%BATTERY%%share/gnome/omf/battstat/battstat-C.omf @@ -763,15 +776,12 @@ share/gnome/pixmaps/accessx-status-applet/sticky-super-none.png %%CPUFREQ%%share/gnome/pixmaps/cpufreq-applet/cpufreq-25.png %%CPUFREQ%%share/gnome/pixmaps/cpufreq-applet/cpufreq-50.png %%CPUFREQ%%share/gnome/pixmaps/cpufreq-applet/cpufreq-75.png -%%CPUFREQ%%share/gnome/pixmaps/cpufreq-applet/cpufreq-applet.png %%CPUFREQ%%share/gnome/pixmaps/cpufreq-applet/cpufreq-na.png %%PYTHON%%share/gnome/pixmaps/invest-big.png share/gnome/pixmaps/stickynotes/close.png share/gnome/pixmaps/stickynotes/locked.png share/gnome/pixmaps/stickynotes/resize_se.png share/gnome/pixmaps/stickynotes/resize_sw.png -share/gnome/pixmaps/stickynotes/stickynotes.png -share/gnome/pixmaps/stickynotes/stickynotes_prelight.png share/gnome/pixmaps/stickynotes/unlocked.png share/gnome/xmodmap/base.xml share/gnome/xmodmap/xmodmap.am @@ -859,14 +869,31 @@ share/gnome/xmodmap/xmodmap.us.old share/gnome/xmodmap/xmodmap.us101A_x86 share/gnome/xmodmap/xmodmap.us_intl share/gnome/xmodmap/xmodmap.yu +share/icons/hicolor/16x16/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/16x16/apps/gnome-eyes-applet.png +share/icons/hicolor/16x16/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/16x16/apps/gnome-sticky-notes-applet.png +share/icons/hicolor/22x22/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/22x22/apps/gnome-eyes-applet.png +share/icons/hicolor/22x22/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/22x22/apps/gnome-sticky-notes-applet.png +share/icons/hicolor/24x24/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/24x24/apps/gnome-eyes-applet.png +share/icons/hicolor/24x24/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/24x24/apps/gnome-sticky-notes-applet.png +share/icons/hicolor/32x32/apps/gnome-cpu-frequency-applet.png +share/icons/hicolor/32x32/apps/gnome-eyes-applet.png +share/icons/hicolor/32x32/apps/gnome-modem-monitor-applet.png +share/icons/hicolor/32x32/apps/gnome-sticky-notes-applet.png share/icons/hicolor/48x48/apps/ax-applet.png share/icons/hicolor/48x48/apps/charpick.png -share/icons/hicolor/48x48/apps/gnome-cpu.png -share/icons/hicolor/48x48/apps/gnome-eyes.png %%COMMANDER%%share/icons/hicolor/48x48/apps/gnome-mini-commander.png -share/icons/hicolor/48x48/apps/gnome-modem.png share/icons/hicolor/48x48/apps/gswitchit-applet.png share/icons/hicolor/48x48/apps/gswitchit-properties-capplet.png +share/icons/hicolor/svgxsvg/apps/gnome-cpu-frequency-applet +share/icons/hicolor/svgxsvg/apps/gnome-eyes-applet +share/icons/hicolor/svgxsvg/apps/gnome-modem-monitor-applet +share/icons/hicolor/svgxsvg/apps/gnome-sticky-notes-applet share/locale/am/LC_MESSAGES/gnome-applets-2.0.mo share/locale/ar/LC_MESSAGES/gnome-applets-2.0.mo share/locale/az/LC_MESSAGES/gnome-applets-2.0.mo @@ -885,6 +912,23 @@ share/locale/el/LC_MESSAGES/gnome-applets-2.0.mo share/locale/en_CA/LC_MESSAGES/gnome-applets-2.0.mo share/locale/en_GB/LC_MESSAGES/gnome-applets-2.0.mo share/locale/es/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_AR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_CL/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_CO/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_CR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_DO/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_EC/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_ES/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_GT/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_HN/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_MX/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_NI/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_PA/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_PE/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_PR/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_SV/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_UY/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/es_VE/LC_MESSAGES/gnome-applets-2.0.mo share/locale/et/LC_MESSAGES/gnome-applets-2.0.mo share/locale/eu/LC_MESSAGES/gnome-applets-2.0.mo share/locale/fa/LC_MESSAGES/gnome-applets-2.0.mo @@ -897,6 +941,7 @@ share/locale/he/LC_MESSAGES/gnome-applets-2.0.mo share/locale/hi/LC_MESSAGES/gnome-applets-2.0.mo share/locale/hr/LC_MESSAGES/gnome-applets-2.0.mo share/locale/hu/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/hy/LC_MESSAGES/gnome-applets-2.0.mo share/locale/id/LC_MESSAGES/gnome-applets-2.0.mo share/locale/is/LC_MESSAGES/gnome-applets-2.0.mo share/locale/it/LC_MESSAGES/gnome-applets-2.0.mo @@ -904,8 +949,10 @@ share/locale/ja/LC_MESSAGES/gnome-applets-2.0.mo share/locale/ka/LC_MESSAGES/gnome-applets-2.0.mo share/locale/ko/LC_MESSAGES/gnome-applets-2.0.mo share/locale/ku/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/ky/LC_MESSAGES/gnome-applets-2.0.mo share/locale/lt/LC_MESSAGES/gnome-applets-2.0.mo share/locale/lv/LC_MESSAGES/gnome-applets-2.0.mo +share/locale/mg/LC_MESSAGES/gnome-applets-2.0.mo share/locale/mk/LC_MESSAGES/gnome-applets-2.0.mo share/locale/ml/LC_MESSAGES/gnome-applets-2.0.mo share/locale/mn/LC_MESSAGES/gnome-applets-2.0.mo @@ -950,12 +997,50 @@ share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo @dirrmtry share/locale/rw @dirrmtry share/locale/mr/LC_MESSAGES @dirrmtry share/locale/mr +@dirrmtry share/locale/ky/LC_MESSAGES +@dirrmtry share/locale/ky @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku +@dirrmtry share/locale/es_VE/LC_MESSAGES +@dirrmtry share/locale/es_VE +@dirrmtry share/locale/es_UY/LC_MESSAGES +@dirrmtry share/locale/es_UY +@dirrmtry share/locale/es_SV/LC_MESSAGES +@dirrmtry share/locale/es_SV +@dirrmtry share/locale/es_PR/LC_MESSAGES +@dirrmtry share/locale/es_PR +@dirrmtry share/locale/es_PE/LC_MESSAGES +@dirrmtry share/locale/es_PE +@dirrmtry share/locale/es_PA/LC_MESSAGES +@dirrmtry share/locale/es_PA +@dirrmtry share/locale/es_NI/LC_MESSAGES +@dirrmtry share/locale/es_NI +@dirrmtry share/locale/es_MX/LC_MESSAGES +@dirrmtry share/locale/es_MX +@dirrmtry share/locale/es_HN/LC_MESSAGES +@dirrmtry share/locale/es_HN +@dirrmtry share/locale/es_GT/LC_MESSAGES +@dirrmtry share/locale/es_GT +@dirrmtry share/locale/es_ES/LC_MESSAGES +@dirrmtry share/locale/es_ES +@dirrmtry share/locale/es_EC/LC_MESSAGES +@dirrmtry share/locale/es_EC +@dirrmtry share/locale/es_DO/LC_MESSAGES +@dirrmtry share/locale/es_DO +@dirrmtry share/locale/es_CR/LC_MESSAGES +@dirrmtry share/locale/es_CR +@dirrmtry share/locale/es_CO/LC_MESSAGES +@dirrmtry share/locale/es_CO +@dirrmtry share/locale/es_CL/LC_MESSAGES +@dirrmtry share/locale/es_CL +@dirrmtry share/locale/es_AR/LC_MESSAGES +@dirrmtry share/locale/es_AR @dirrmtry share/locale/dz/LC_MESSAGES @dirrmtry share/locale/dz @dirrmtry share/locale/bn_IN/LC_MESSAGES @dirrmtry share/locale/bn_IN +@dirrmtry share/icons/hicolor/svgxsvg/apps +@dirrmtry share/icons/hicolor/svgxsvg @dirrmtry share/icons/hicolor/48x48/apps @dirrmtry share/icons/hicolor/48x48 @dirrmtry share/icons/hicolor @@ -1147,6 +1232,8 @@ share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo @dirrm share/gnome/help/accessx-status/uk @dirrm share/gnome/help/accessx-status/sv/figures @dirrm share/gnome/help/accessx-status/sv +@dirrm share/gnome/help/accessx-status/nl/figures +@dirrm share/gnome/help/accessx-status/nl @dirrm share/gnome/help/accessx-status/it/figures @dirrm share/gnome/help/accessx-status/it @dirrm share/gnome/help/accessx-status/fr/figures @@ -1158,6 +1245,7 @@ share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo @dirrm share/gnome/help/accessx-status/C/figures @dirrm share/gnome/help/accessx-status/C @dirrm share/gnome/help/accessx-status +@dirrm share/gnome/gnome-applets/invest-applet @dirrm share/gnome/gnome-applets/gweather @dirrm share/gnome/gnome-applets/glade @dirrm share/gnome/gnome-applets/geyes/Horrid @@ -1166,7 +1254,6 @@ share/locale/zh_TW/LC_MESSAGES/gnome-applets-2.0.mo @dirrm share/gnome/gnome-applets/geyes/Bloodshot @dirrm share/gnome/gnome-applets/geyes/Bizarre @dirrm share/gnome/gnome-applets/geyes -@dirrm share/gnome/gnome-applets/art @dirrm share/gnome/gnome-applets %%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/invest @dirrm include/libgweather |