summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2017-08-23 17:52:47 +0000
committerjlam <jlam@pkgsrc.org>2017-08-23 17:52:47 +0000
commitbe9973e84a0c4ba5d4a70db1a55a387f373be344 (patch)
treefb80ae9aa4c771fa4568051231788b88017ac145
parent6fd07a253333f5f3f3cc6d2ab6c3ae344fb860f0 (diff)
downloadpkgsrc-be9973e84a0c4ba5d4a70db1a55a387f373be344.tar.gz
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.
-rw-r--r--shells/standalone-tcsh/Makefile3
-rw-r--r--shells/static-tcsh/Makefile3
-rw-r--r--shells/tcsh/Makefile11
3 files changed, 11 insertions, 6 deletions
diff --git a/shells/standalone-tcsh/Makefile b/shells/standalone-tcsh/Makefile
index f3e04e61a19..7376e34ef88 100644
--- a/shells/standalone-tcsh/Makefile
+++ b/shells/standalone-tcsh/Makefile
@@ -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 @@ CHECK_FILES_SUPPORTED= no
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 --git a/shells/static-tcsh/Makefile b/shells/static-tcsh/Makefile
index 3b8764f7e82..e2e6356f80a 100644
--- a/shells/static-tcsh/Makefile
+++ b/shells/static-tcsh/Makefile
@@ -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
@@ -11,6 +11,7 @@ DESCR_SRC= ${.CURDIR}/../../shells/tcsh/DESCR ${.CURDIR}/DESCR
CONFLICTS= tcsh-[0-9]*
PKGNAME= static-${DISTNAME}
+PKGREVISION= 3 # ALWAYS needs to be set; 0 if none.
.include "../../shells/tcsh/Makefile"
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile
index dd610d036f3..05b6f4d5757 100644
--- a/shells/tcsh/Makefile
+++ b/shells/tcsh/Makefile
@@ -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
+MAINTAINER?= kimmo@suominen.com # 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