From owner-svn-ports-head@FreeBSD.ORG Mon Feb 17 14:36:46 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 921D41D4; Mon, 17 Feb 2014 14:36:46 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 652C2182B; Mon, 17 Feb 2014 14:36:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1HEakhL088237; Mon, 17 Feb 2014 14:36:46 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1HEajlP088234; Mon, 17 Feb 2014 14:36:45 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201402171436.s1HEajlP088234@svn.freebsd.org> From: Pietro Cerutti Date: Mon, 17 Feb 2014 14:36:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r344757 - in head/deskutils/remind: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Feb 2014 14:36:46 -0000 Author: gahr Date: Mon Feb 17 14:36:45 2014 New Revision: 344757 URL: http://svnweb.freebsd.org/changeset/ports/344757 QAT: https://qat.redports.org/buildarchive/r344757/ Log: - Update to 3.1.13 - Convert to USES=tk - Fix bug http://lists.roaringpenguin.com/pipermail/remind-fans/2014/003008.html Approved by: maintainer Added: head/deskutils/remind/files/patch-src_md5.c (contents, props changed) Modified: head/deskutils/remind/Makefile head/deskutils/remind/distinfo Modified: head/deskutils/remind/Makefile ============================================================================== --- head/deskutils/remind/Makefile Mon Feb 17 14:33:15 2014 (r344756) +++ head/deskutils/remind/Makefile Mon Feb 17 14:36:45 2014 (r344757) @@ -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= jadawin@FreeBSD.org COMMENT= Sophisticated calendar and alarm program @@ -28,7 +28,7 @@ PLIST_FILES= bin/rem \ .include .if ${PORT_OPTIONS:MTCLTK} -USE_TK= yes +USES= tk RUN_DEPENDS+= dtplite:${PORTSDIR}/devel/tcllib PLIST_FILES+= bin/cm2rem.tcl bin/tkremind .endif Modified: head/deskutils/remind/distinfo ============================================================================== --- head/deskutils/remind/distinfo Mon Feb 17 14:33:15 2014 (r344756) +++ head/deskutils/remind/distinfo Mon Feb 17 14:36:45 2014 (r344757) @@ -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 Added: head/deskutils/remind/files/patch-src_md5.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/remind/files/patch-src_md5.c Mon Feb 17 14:36:45 2014 (r344757) @@ -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