diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-10 19:50:28 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-10 19:50:28 +0000 |
commit | 3631634036b9210925c465930f96a9b3a9ee1d6d (patch) | |
tree | 89ac98718689219ae4e6932df1b615d153a6adee /x11/yelp | |
parent | 6cad73682412b9740fc1dd5f753638d074ecd941 (diff) | |
download | ports-3631634036b9210925c465930f96a9b3a9ee1d6d.tar.gz ports-3631634036b9210925c465930f96a9b3a9ee1d6d.zip |
Notes
Diffstat (limited to 'x11/yelp')
-rw-r--r-- | x11/yelp/Makefile | 2 | ||||
-rw-r--r-- | x11/yelp/distinfo | 2 | ||||
-rw-r--r-- | x11/yelp/files/patch-src_info2html_main.c | 25 |
3 files changed, 2 insertions, 27 deletions
diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile index 15539f9fd540..084d64f6bf5b 100644 --- a/x11/yelp/Makefile +++ b/x11/yelp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= yelp -PORTVERSION= 2.4.1 +PORTVERSION= 2.4.2 CATEGORIES= x11 gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.4 diff --git a/x11/yelp/distinfo b/x11/yelp/distinfo index ed358731ee9d..7641a9760138 100644 --- a/x11/yelp/distinfo +++ b/x11/yelp/distinfo @@ -1 +1 @@ -MD5 (gnome2/yelp-2.4.1.tar.bz2) = d57cf454e5b11081cd451505939a9e84 +MD5 (gnome2/yelp-2.4.2.tar.bz2) = ee89f4d0886f7c3be1b9f6894a57ec1b diff --git a/x11/yelp/files/patch-src_info2html_main.c b/x11/yelp/files/patch-src_info2html_main.c deleted file mode 100644 index bc6d3df4b8a8..000000000000 --- a/x11/yelp/files/patch-src_info2html_main.c +++ /dev/null @@ -1,25 +0,0 @@ ---- src/info2html/main.c.orig Fri Oct 10 02:53:54 2003 -+++ src/info2html/main.c Fri Oct 10 02:54:23 2003 -@@ -125,11 +125,11 @@ - - for(i = 0; i < ndirs; i++) { - ext = ""; -- buf = g_strdup_printf (buf, "%s/%s.info", dirs[i], args[0]); -+ buf = g_strdup_printf ("%s/%s.info", dirs[i], args[0]); - if(file_exists(buf)) - break; - g_free (buf); -- buf = g_strdup_printf (buf, "%s/%s", dirs[i], args[0]); -+ buf = g_strdup_printf ("%s/%s", dirs[i], args[0]); - if(file_exists(buf)) { - no_info = TRUE; - break; -@@ -141,7 +141,7 @@ - if(file_exists(buf)) - break; - g_free (buf); -- buf = g_strdup_printf (buf, "%s/%s.gz", dirs[i], args[0]); -+ buf = g_strdup_printf ("%s/%s.gz", dirs[i], args[0]); - if(file_exists(buf)) { - no_info = TRUE; - break; |