Update to 0.061.

This commit is contained in:
Jeremy Messenger 2004-10-11 22:40:52 +00:00
parent bc8096c671
commit f1f9fc88ea
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118638
4 changed files with 51 additions and 6 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= gcursor
PORTVERSION= 0.06
PORTVERSION= 0.061
CATEGORIES= x11 gnome
MASTER_SITES= http://download.qballcow.nl/programs/gcursor/

View File

@ -1,2 +1,2 @@
MD5 (gcursor-0.06.tar.gz) = 80cb9f3da98b595d298731aafc6c1384
SIZE (gcursor-0.06.tar.gz) = 142932
MD5 (gcursor-0.061.tar.gz) = 233810996bc7f69879f8978c523ae723
SIZE (gcursor-0.061.tar.gz) = 143719

View File

@ -1,14 +1,58 @@
--- src/gcursor.c.orig Thu Apr 8 10:25:03 2004
+++ src/gcursor.c Thu Apr 8 18:00:14 2004
@@ -32,10 +32,7 @@
--- src/gcursor.c.orig Mon Sep 20 14:34:20 2004
+++ src/gcursor.c Mon Sep 20 14:34:25 2004
@@ -32,29 +32,21 @@
#warning move this into gconf
char *paths[] = {
- "/usr/share/cursors/xfree/",
- "/usr/X11R6/lib/X11/icons/",
- "/usr/Xorg/lib/X11/icons/",
- "/usr/local/share/icons/",
- "/usr/share/icons/",
+ "%%X11BASE%%/lib/X11/icons/",
"%s/.icons/",
NULL
};
void open_theme_dir()
{
- GError * error = NULL;
- char * filename;
-
- filename = g_strdup_printf("file:///%s/.icons/", g_getenv("HOME"));
- gnome_url_show(filename,&error);
- g_free(filename);
+ gchar *path, *command;
- if (error)
- {
- gnome_warning_dialog (error->message);
- g_error_free (error);
- }
+ path = g_strdup_printf ("%s/.icons", g_get_home_dir());
+ command = g_strdup_printf ("nautilus --no-desktop %s", path);
+
+ g_free (path);
+ g_spawn_command_line_async (command, NULL);
+ g_free (command);
}
@@ -85,7 +77,7 @@
filename = g_shell_quote(gtk_file_selection_get_filename(GTK_FILE_SELECTION(fs)));
#endif
- path = g_strdup_printf("file-roller --extract-to=%s/.icons/ %s", g_getenv("HOME"),
+ path = g_strdup_printf("file-roller --extract-to=%s/.icons/ %s", g_get_home_dir(),
filename);
g_free(filename);
@@ -281,7 +273,7 @@
for (iterator = paths; *iterator; iterator++)
{
- dirname = g_strdup_printf(*iterator, g_getenv("HOME"));
+ dirname = g_strdup_printf(*iterator, g_get_home_dir());
directory = g_dir_open(dirname, 0, NULL);
while(directory != NULL && (name = g_dir_read_name(directory)) != NULL)

View File

@ -8,5 +8,6 @@ share/gnome/capplets/gcursor.desktop
share/gnome/gcursor/gcursor.glade
share/locale/de/LC_MESSAGES/gcursor.mo
share/locale/es/LC_MESSAGES/gcursor.mo
share/locale/sv/LC_MESSAGES/gcursor.mo
@dirrm share/gnome/gcursor
%%PORTDOCS%%@dirrm %%DOCSDIR%%