pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/shells shells/{, static-, standalone}tcsh: Fix PKGREVISI...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/98184e536176
branches:  trunk
changeset: 367077:98184e536176
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Wed Aug 23 17:52:47 2017 +0000

description:
shells/{,static-,standalone}tcsh: Fix PKGREVISION & MAINTAINER.

The tcsh package Makefile is included directly by the static-tcsh
and standalone-tcsh Makefiles.  Modify some of the variables that
really need to be package-specific to be set with ?= in
tcsh/Makefile and document the package Makefiles that directly
include it.

Set PKGREVISION directly in static-tcsh and standalone-tcsh now
that they can have independent PKGREVISION values.

Bump the PKGREVISION of static-tcsh due to the MAINTAINER now
correctly being listed as agc@ due to this change.

diffstat:

 shells/standalone-tcsh/Makefile |   3 ++-
 shells/static-tcsh/Makefile     |   3 ++-
 shells/tcsh/Makefile            |  11 +++++++----
 3 files changed, 11 insertions(+), 6 deletions(-)

diffs (62 lines):

diff -r ebfb7f96f7c3 -r 98184e536176 shells/standalone-tcsh/Makefile
--- a/shells/standalone-tcsh/Makefile   Wed Aug 23 17:52:30 2017 +0000
+++ b/shells/standalone-tcsh/Makefile   Wed Aug 23 17:52:47 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2016/09/07 21:03:21 joerg Exp $
+# $NetBSD: Makefile,v 1.28 2017/08/23 17:52:47 jlam Exp $
 #
 
 # FIXME: This is because of PREFIX=/ below.
@@ -6,6 +6,7 @@
 NOT_FOR_UNPRIVILEGED=  yes
 
 PKGNAME=               standalone-${DISTNAME}
+PKGREVISION=           2       # ALWAYS needs to be set; 0 if none.
 
 WRKSRC=                        ${WRKDIR}/${DISTNAME}
 PATCHDIR=              ${.CURDIR}/../../shells/tcsh/patches
diff -r ebfb7f96f7c3 -r 98184e536176 shells/static-tcsh/Makefile
--- a/shells/static-tcsh/Makefile       Wed Aug 23 17:52:30 2017 +0000
+++ b/shells/static-tcsh/Makefile       Wed Aug 23 17:52:47 2017 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.8 2012/07/21 15:56:42 dholland Exp $
+# $NetBSD: Makefile,v 1.9 2017/08/23 17:52:47 jlam Exp $
 #
 
 MAINTAINER=            agc%NetBSD.org@localhost
@@ -11,6 +11,7 @@
 CONFLICTS=             tcsh-[0-9]*
 
 PKGNAME=               static-${DISTNAME}
+PKGREVISION=           3       # ALWAYS needs to be set; 0 if none.
 
 .include "../../shells/tcsh/Makefile"
 
diff -r ebfb7f96f7c3 -r 98184e536176 shells/tcsh/Makefile
--- a/shells/tcsh/Makefile      Wed Aug 23 17:52:30 2017 +0000
+++ b/shells/tcsh/Makefile      Wed Aug 23 17:52:47 2017 +0000
@@ -1,17 +1,20 @@
-# $NetBSD: Makefile,v 1.85 2017/02/17 19:21:44 he Exp $
+# $NetBSD: Makefile,v 1.86 2017/08/23 17:52:47 jlam Exp $
+#
+# used by shells/standalone-tcsh/Makefile
+# used by shells/static-tcsh/Makefile
 
 DISTNAME=      tcsh-6.20.00
-PKGREVISION=   2
+PKGREVISION?=  2                       # use ?= to allow for overrides.
 CATEGORIES=    shells
 MASTER_SITES=  ftp://ftp.astron.com/pub/tcsh/
 MASTER_SITES+= ftp://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/
 
-MAINTAINER=    kimmo%suominen.com@localhost
+MAINTAINER?=   kimmo%suominen.com@localhost    # use ?= to allow for overrides.
 HOMEPAGE=      http://www.tcsh.org/
 COMMENT=       Extended C-shell with many useful features
 LICENSE=       original-bsd
 
-CONFLICTS?=    static-tcsh-[0-9]*
+CONFLICTS?=    static-tcsh-[0-9]*      # use ?= to allow for overrides.
 
 GNU_CONFIGURE= yes
 



Home | Main Index | Thread Index | Old Index