diff options
author | schmonz <schmonz@pkgsrc.org> | 2003-01-09 13:13:04 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2003-01-09 13:13:04 +0000 |
commit | e0b7a580e06c9de853661f374330562574e28f1e (patch) | |
tree | 03ff2424e0b8c500a1ed7708b5487638c21f86ba /pkgtools | |
parent | 85caee66fe8a65440acce4328ab5d83d71dcf6fe (diff) | |
download | pkgsrc-e0b7a580e06c9de853661f374330562574e28f1e.tar.gz |
Define NO_PKGTOOLS_REQD_CHECK, which will mean something in a moment.
Rather than override LOCALBASE, set PREFIX (after including bsd.pkg.mk).
Bump PKGTOOLS_VERSION (many changes since 20021123).
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 6 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/lib/version.h | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index fa4a3c66226..68d98d47712 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2002/12/24 07:46:09 schmonz Exp $ +# $NetBSD: Makefile,v 1.65 2003/01/09 13:13:04 schmonz Exp $ # Notes to package maintainers: # @@ -24,6 +24,7 @@ USE_DB185= # defined GNU_CONFIGURE= # defined CONFIGURE_ARGS+= --with-pkgdbdir=${PKG_DBDIR} +NO_PKGTOOLS_REQD_CHECK= # defined NO_CHECKSUM= # defined NO_PATCH= # defined NO_MTREE= # defined @@ -35,7 +36,6 @@ NO_PACKAGE= Deinstallation is not permitted VERSION!= ${AWK} -F '"' '/PKGTOOLS_VERSION/ {print $$2}' \ ${FILESDIR}/lib/version.h -LOCALBASE:= ${PKG_TOOLS_BIN:C|/[^/]?bin$||} PKG_DBDIR?= /var/db/pkg .if ${OPSYS} == "NetBSD" && !exists(/usr/share/tmac/tmac.andoc) @@ -55,3 +55,5 @@ post-install: .include "../../databases/db/buildlink2.mk" .include "../../mk/bsd.pkg.mk" + +PREFIX:= ${PKG_TOOLS_BIN:C|/[^/]?bin$||} diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h index 78017071760..4bebe5778a2 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.1.1.1 2002/12/20 18:14:05 schmonz Exp $ */ +/* $NetBSD: version.h,v 1.2 2003/01/09 13:13:05 schmonz 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 "20021123" +#define PKGTOOLS_VERSION "20030109" #endif /* _INST_LIB_VERSION_H_ */ |