summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhubertf <hubertf@pkgsrc.org>2004-01-06 15:53:41 +0000
committerhubertf <hubertf@pkgsrc.org>2004-01-06 15:53:41 +0000
commitf53fa863f8cfd7f6a363207ce4486d3ec1fe6e1f (patch)
tree791b54716bb93860dddfbbe767f2951fef445591
parentff43ddd7d7bd7ef856f8d95e79dacea8a21db700 (diff)
downloadpkgsrc-f53fa863f8cfd7f6a363207ce4486d3ec1fe6e1f.tar.gz
pkg_install now prints post-install message by default, if available.
-rw-r--r--doc/CHANGES3
-rw-r--r--pkgtools/pkg_install/files/info/main.c7
-rw-r--r--pkgtools/pkg_install/files/lib/version.h4
3 files changed, 8 insertions, 6 deletions
diff --git a/doc/CHANGES b/doc/CHANGES
index a2eb1efd771..bd711e23f83 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.4372 2004/01/06 15:45:56 wiz Exp $
+$NetBSD: CHANGES,v 1.4373 2004/01/06 15:53:41 hubertf Exp $
Changes to the packages collection and infrastructure in 2004:
@@ -77,3 +77,4 @@ Changes to the packages collection and infrastructure in 2004:
Updated xlockmore to 5.11.1 [hubertf 2004-01-06]
Added chmlib-0.31 [wiz 2004-01-06]
Added xchm-0.8 [wiz 2004-01-06]
+ Updated pkg_install to 20040106 [hubertf 2004-01-06]
diff --git a/pkgtools/pkg_install/files/info/main.c b/pkgtools/pkg_install/files/info/main.c
index 9efe301467f..6fb9ce6be3f 100644
--- a/pkgtools/pkg_install/files/info/main.c
+++ b/pkgtools/pkg_install/files/info/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.6 2003/09/23 07:13:51 grant Exp $ */
+/* $NetBSD: main.c,v 1.7 2004/01/06 15:53:41 hubertf Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -11,7 +11,7 @@
#if 0
static char *rcsid = "from FreeBSD Id: main.c,v 1.14 1997/10/08 07:47:26 charnier Exp";
#else
-__RCSID("$NetBSD: main.c,v 1.6 2003/09/23 07:13:51 grant Exp $");
+__RCSID("$NetBSD: main.c,v 1.7 2004/01/06 15:53:41 hubertf Exp $");
#endif
#endif
@@ -217,7 +217,8 @@ main(int argc, char **argv)
/* Set some reasonable defaults */
if (!Flags)
- Flags = SHOW_COMMENT | SHOW_DESC | SHOW_REQBY | SHOW_DEPENDS;
+ Flags = SHOW_COMMENT | SHOW_DESC | SHOW_REQBY
+ | SHOW_DEPENDS | SHOW_DISPLAY;
/* -Fe /filename -> change CheckPkg to real packagename */
if (CheckPkg && File2Pkg) {
diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h
index 8e5d496bfe1..95604f88209 100644
--- a/pkgtools/pkg_install/files/lib/version.h
+++ b/pkgtools/pkg_install/files/lib/version.h
@@ -1,4 +1,4 @@
-/* $NetBSD: version.h,v 1.20 2004/01/04 01:49:38 hubertf Exp $ */
+/* $NetBSD: version.h,v 1.21 2004/01/06 15:53:41 hubertf Exp $ */
/*
* Copyright (c) 2001 Thomas Klausner. All rights reserved.
@@ -33,6 +33,6 @@
#ifndef _INST_LIB_VERSION_H_
#define _INST_LIB_VERSION_H_
-#define PKGTOOLS_VERSION "20040104"
+#define PKGTOOLS_VERSION "20040106"
#endif /* _INST_LIB_VERSION_H_ */