From owner-svn-ports-head@FreeBSD.ORG Sat Dec 28 21:33:15 2013 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 30C221CB; Sat, 28 Dec 2013 21:33:15 +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 1D47C1CA1; Sat, 28 Dec 2013 21:33:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBSLXErs068618; Sat, 28 Dec 2013 21:33:14 GMT (envelope-from johans@svn.freebsd.org) Received: (from johans@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBSLXE2c068617; Sat, 28 Dec 2013 21:33:14 GMT (envelope-from johans@svn.freebsd.org) Message-Id: <201312282133.rBSLXE2c068617@svn.freebsd.org> From: Johan van Selst Date: Sat, 28 Dec 2013 21:33:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337919 - head/deskutils/gcal 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: Sat, 28 Dec 2013 21:33:15 -0000 Author: johans Date: Sat Dec 28 21:33:14 2013 New Revision: 337919 URL: http://svnweb.freebsd.org/changeset/ports/337919 Log: - Enable stage support - Fix perl shebang path - Bump PORTREVISION Modified: head/deskutils/gcal/Makefile Modified: head/deskutils/gcal/Makefile ============================================================================== --- head/deskutils/gcal/Makefile Sat Dec 28 21:24:17 2013 (r337918) +++ head/deskutils/gcal/Makefile Sat Dec 28 21:33:14 2013 (r337919) @@ -1,10 +1,11 @@ # Created by: Cyrille Lefevre # $FreeBSD$ -PORTNAME= gcal -PORTVERSION= 3.6.3 -CATEGORIES= deskutils -MASTER_SITES= GNU +PORTNAME= gcal +PORTVERSION= 3.6.3 +PORTREVISION= 1 +CATEGORIES= deskutils +MASTER_SITES= GNU MAINTAINER= johans@FreeBSD.org COMMENT= The GNU Gregorian calendar program @@ -12,15 +13,15 @@ COMMENT= The GNU Gregorian calendar prog USE_XZ= yes GNU_CONFIGURE= yes CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" +USES= shebangfix +SHEBANG_FILES= misc/gcalltx/gcalltxp.in misc/gcalltx/gcalltx.pl INFO= gcal -#MAN1= gcal.1 gcal2txt.1 tcal.1 txt2gcal.1 -NO_STAGE= yes .include .if ${PORT_OPTIONS:MNLS} -USES= gettext +USES+= gettext PLIST_SUB+= NLS="" .else CONFIGURE_ARGS+=--disable-nls @@ -39,10 +40,11 @@ post-patch: post-install: @${TAR} -cf - -C ${WRKSRC} --exclude '*.in' --exclude '*.in.bak' \ - --exclude '*.alias' misc | ${TAR} -xpf - -C ${DATADIR} + --exclude '*.alias' misc | \ + ${TAR} -xpf - -C ${STAGEDIR}${DATADIR} .for p in ${GCAL_SCRIPTS} - @${CHMOD} +x ${DATADIR}/misc/${p} - @${LN} -s ${DATADIR}/misc/${p} ${PREFIX}/bin/gcal-${p:T} + @${CHMOD} +x ${STAGEDIR}${DATADIR}/misc/${p} + @${LN} -s ${DATADIR}/misc/${p} ${STAGEDIR}${PREFIX}/bin/gcal-${p:T} .endfor .include