Skip to content

Commit

Permalink
- Update to 3.1.13
Browse files Browse the repository at this point in the history
- Convert to USES=tk
- Fix bug
  http://lists.roaringpenguin.com/pipermail/remind-fans/2014/003008.html

Approved by:	maintainer
  • Loading branch information
gahr committed Feb 17, 2014
1 parent eb0688e commit 65703f1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
6 changes: 3 additions & 3 deletions deskutils/remind/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
# $FreeBSD$

PORTNAME= remind
PORTVERSION= 3.1.12
PORTVERSION= 3.1.13
CATEGORIES= deskutils
MASTER_SITES= http://www.roaringpenguin.com/files/download/ \
http://freebsd.unixfreunde.de/sources/
DISTNAME= ${PORTNAME}-03.01.12
DISTNAME= ${PORTNAME}-03.01.13

MAINTAINER= [email protected]
COMMENT= Sophisticated calendar and alarm program
Expand All @@ -28,7 +28,7 @@ PLIST_FILES= bin/rem \
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MTCLTK}
USE_TK= yes
USES= tk
RUN_DEPENDS+= dtplite:${PORTSDIR}/devel/tcllib
PLIST_FILES+= bin/cm2rem.tcl bin/tkremind
.endif
Expand Down
4 changes: 2 additions & 2 deletions deskutils/remind/distinfo
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
SHA256 (remind-03.01.12.tar.gz) = b8c7773ebbae80c7f340073c0c7f73124672c56a950d721f6afdab7b29f9cbb9
SIZE (remind-03.01.12.tar.gz) = 361662
SHA256 (remind-03.01.13.tar.gz) = cf2663d5eb41863fc98da7c8db31ae0a86fbe7137aada81d0649523b4a0bfc4f
SIZE (remind-03.01.13.tar.gz) = 361650
11 changes: 11 additions & 0 deletions deskutils/remind/files/patch-src_md5.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- src/md5.c.orig 2014-02-14 17:34:29.000000000 +0100
+++ src/md5.c 2014-02-14 17:34:37.000000000 +0100
@@ -141,7 +141,7 @@
MD5Transform(ctx->buf, (uint32 *) ctx->in);
byteReverse((unsigned char *) ctx->buf, 4);
memcpy(digest, ctx->buf, 16);
- memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
+ memset(ctx, 0, sizeof(*ctx)); /* In case it's sensitive */
}

#ifndef ASM_MD5

0 comments on commit 65703f1

Please sign in to comment.