pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/shells rename standalone-tcsh to tcsh-standalone. the ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/899a20141313
branches:  trunk
changeset: 466008:899a20141313
user:      grant <grant%pkgsrc.org@localhost>
date:      Sat Jan 10 06:56:15 2004 +0000

description:
rename standalone-tcsh to tcsh-standalone. the convention in pkgsrc is
for mutations of packages to be named <pkg>-<mutation>.

add a CONFLICT on standalone-tcsh for obvious reasons.

diffstat:

 shells/Makefile                 |   4 ++--
 shells/standalone-tcsh/DESCR    |   5 -----
 shells/standalone-tcsh/Makefile |  28 ----------------------------
 shells/standalone-tcsh/PLIST    |   3 ---
 shells/tcsh-standalone/DESCR    |   5 +++++
 shells/tcsh-standalone/Makefile |  31 +++++++++++++++++++++++++++++++
 shells/tcsh-standalone/PLIST    |   3 +++
 7 files changed, 41 insertions(+), 38 deletions(-)

diffs (120 lines):

diff -r 6021298bcb1d -r 899a20141313 shells/Makefile
--- a/shells/Makefile   Sat Jan 10 06:53:45 2004 +0000
+++ b/shells/Makefile   Sat Jan 10 06:56:15 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.24 2004/01/10 06:53:45 grant Exp $
+# $NetBSD: Makefile,v 1.25 2004/01/10 06:56:15 grant Exp $
 #
 
 COMMENT=       Shells
@@ -14,10 +14,10 @@
 SUBDIR+=       perlsh
 SUBDIR+=       rc
 SUBDIR+=       scsh
-SUBDIR+=       standalone-tcsh
 SUBDIR+=       static-ast-ksh
 SUBDIR+=       static-bash2
 SUBDIR+=       tcsh
+SUBDIR+=       tcsh-standalone
 SUBDIR+=       tcsh-static
 SUBDIR+=       zsh
 SUBDIR+=       zsh-current
diff -r 6021298bcb1d -r 899a20141313 shells/standalone-tcsh/DESCR
--- a/shells/standalone-tcsh/DESCR      Sat Jan 10 06:53:45 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-TCSH is an extended C-shell with many useful features like
-filename completion, history editing, etc.
-
-This version installs a statically-linked version of tcsh into
-/bin, for use as a standalone shell.
diff -r 6021298bcb1d -r 899a20141313 shells/standalone-tcsh/Makefile
--- a/shells/standalone-tcsh/Makefile   Sat Jan 10 06:53:45 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-# $NetBSD: Makefile,v 1.10 2003/09/18 22:59:38 grant Exp $
-#
-
-NO_MTREE=              YES
-
-PKGNAME=               standalone-${DISTNAME}
-WRKSRC=                        ${WRKDIR}/${DISTNAME}
-
-PKG_SHELL=             /bin/tcsh
-
-.include "../../shells/tcsh/Makefile"
-
-COMMENT:=              Standalone version of the Extended C-shell
-
-PATCH:=                        ${PATCH}
-PKG_INFO:=             ${PKG_INFO}
-PKG_CREATE:=           ${PKG_CREATE}
-PREFIX=                        /
-NLSDIR=                        usr/share/nls
-CONFIGURE_ARGS=                --prefix=${PREFIX} --bindir=/bin
-CONFIGURE_ARGS+=       --mandir=/usr/share/man
-
-DISTINFO_FILE=         ${.CURDIR}/../../shells/tcsh/distinfo
-PATCHDIR=              ${.CURDIR}/../../shells/tcsh/patches
-
-.if ${OPSYS} != "SunOS"
-LDFLAGS+=              -static
-.endif
diff -r 6021298bcb1d -r 899a20141313 shells/standalone-tcsh/PLIST
--- a/shells/standalone-tcsh/PLIST      Sat Jan 10 06:53:45 2004 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2002/11/17 09:02:01 salo Exp $
-bin/tcsh
-usr/share/man/man1/tcsh.1
diff -r 6021298bcb1d -r 899a20141313 shells/tcsh-standalone/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/shells/tcsh-standalone/DESCR      Sat Jan 10 06:56:15 2004 +0000
@@ -0,0 +1,5 @@
+TCSH is an extended C-shell with many useful features like
+filename completion, history editing, etc.
+
+This version installs a statically-linked version of tcsh into
+/bin, for use as a standalone shell.
diff -r 6021298bcb1d -r 899a20141313 shells/tcsh-standalone/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/shells/tcsh-standalone/Makefile   Sat Jan 10 06:56:15 2004 +0000
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.1 2004/01/10 06:56:15 grant Exp $
+#
+
+NO_MTREE=              YES
+
+PKGNAME=               ${DISTNAME:C|-.*||}-standalone${DISTNAME:C|[^-]*||}
+WRKSRC=                        ${WRKDIR}/${DISTNAME}
+
+# this package used to be called 'standalone-tcsh'
+CONFLICTS+=            standalone-tcsh-[0-9]*
+
+PKG_SHELL=             /bin/tcsh
+
+.include "../../shells/tcsh/Makefile"
+
+COMMENT:=              Standalone version of the Extended C-shell
+
+PATCH:=                        ${PATCH}
+PKG_INFO:=             ${PKG_INFO}
+PKG_CREATE:=           ${PKG_CREATE}
+PREFIX=                        /
+NLSDIR=                        usr/share/nls
+CONFIGURE_ARGS=                --prefix=${PREFIX} --bindir=/bin
+CONFIGURE_ARGS+=       --mandir=/usr/share/man
+
+DISTINFO_FILE=         ${.CURDIR}/../../shells/tcsh/distinfo
+PATCHDIR=              ${.CURDIR}/../../shells/tcsh/patches
+
+.if ${OPSYS} != "SunOS"
+LDFLAGS+=              -static
+.endif
diff -r 6021298bcb1d -r 899a20141313 shells/tcsh-standalone/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/shells/tcsh-standalone/PLIST      Sat Jan 10 06:56:15 2004 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1 2004/01/10 06:56:15 grant Exp $
+bin/tcsh
+usr/share/man/man1/tcsh.1



Home | Main Index | Thread Index | Old Index