aboutsummaryrefslogtreecommitdiff
path: root/misc/rpl
diff options
context:
space:
mode:
authorMichael Landin <mich@FreeBSD.org>2012-11-26 11:06:09 +0000
committerMichael Landin <mich@FreeBSD.org>2012-11-26 11:06:09 +0000
commita4aa037cf37988e055606cc17b9bc30d72c13535 (patch)
treeb4d3412018269b3279d987ec58d0b9a89f91903e /misc/rpl
parent0b6035194b1b81621d2f9d5998d422789c35a73d (diff)
downloadports-a4aa037cf37988e055606cc17b9bc30d72c13535.tar.gz
ports-a4aa037cf37988e055606cc17b9bc30d72c13535.zip
- update to -> 1.4.1
Feature safe: yes
Notes
Notes: svn path=/head/; revision=307772
Diffstat (limited to 'misc/rpl')
-rw-r--r--misc/rpl/Makefile2
-rw-r--r--misc/rpl/distinfo4
-rw-r--r--misc/rpl/files/patch-src_replace.h23
3 files changed, 3 insertions, 26 deletions
diff --git a/misc/rpl/Makefile b/misc/rpl/Makefile
index eaa9a36a9fb1..cbb0b39b00de 100644
--- a/misc/rpl/Makefile
+++ b/misc/rpl/Makefile
@@ -7,7 +7,7 @@
#
PORTNAME= rpl
-PORTVERSION= 1.4.0
+PORTVERSION= 1.4.1
CATEGORIES= misc
MASTER_SITES= http://downloads.laffeycomputer.com/current_builds/
diff --git a/misc/rpl/distinfo b/misc/rpl/distinfo
index 7d48e4d2a473..c105ee7e9ba2 100644
--- a/misc/rpl/distinfo
+++ b/misc/rpl/distinfo
@@ -1,2 +1,2 @@
-SHA256 (rpl-1.4.0.tar.gz) = f9ddb40ab3cf550d4ad1977f448f3b083035645a89ecba581bb57577a6c04caa
-SIZE (rpl-1.4.0.tar.gz) = 59602
+SHA256 (rpl-1.4.1.tar.gz) = 291055dc8763c855bab76142b5f7e9625392bcefa524b796bc4ddbcf941a1310
+SIZE (rpl-1.4.1.tar.gz) = 65792
diff --git a/misc/rpl/files/patch-src_replace.h b/misc/rpl/files/patch-src_replace.h
deleted file mode 100644
index 875a46626545..000000000000
--- a/misc/rpl/files/patch-src_replace.h
+++ /dev/null
@@ -1,23 +0,0 @@
-
-$FreeBSD$
-
---- src/replace.h.orig
-+++ src/replace.h
-@@ -77,8 +77,7 @@
-
- /* This is a simple macro to call malloc() and die if it returns null */
- #define MALLOC_FAIL_STRING ("\n" PACKAGE " Unable to allocate memory!")
--#define MALLOC_AND_CHECK( x, y ) (void*)(x)=malloc((y));if(x==NULL){fprintf(stderr,"\n%s --> %s:%d\n", MALLOC_FAIL_STRING, __FILE__, __LINE__ );exit(EX_OSERR);}
--
-+#define MALLOC_AND_CHECK( x, y ) (x)=malloc((y));if(x==NULL){fprintf(stderr,"\n%s --> %s:%d\n", MALLOC_FAIL_STRING, __FILE__, __LINE__ );exit(EX_OSERR);}
-
- /* Function Prototypes */
-
-@@ -90,4 +89,5 @@
-
- static void EchoFeedback(int, int, int, char*);
-
--static void SetPerms(struct stat, int, int, char*, int* );
-\ No newline at end of file
-+static void SetPerms(struct stat, int, int, char*, int* );
-+