blob: 3d780b969215d30b0eb9893557dc8218edf236c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.13 2006/07/14 20:11:10 jlam Exp $
#
# This version of pax installs into ${PKG_TOOLS_BIN}.
#
.include "../../archivers/pax/Makefile.common"
CATEGORIES= pkgtools
NO_PKGTOOLS_REQD_CHECK= yes
PKG_PRESERVE= yes
PKG_TOOLS_PREFIX= ${PKG_TOOLS_BIN:C|/[^/]?bin$||}
# XXX This breaks for those who set their own LOCALBASE to "/usr" and also
# XXX set PKGMANDIR to be other than "share/man".
# XXX
.if !empty(PKG_TOOLS_PREFIX:M/usr)
PKGMANDIR= share/man
.endif
.include "../../pkgtools/libnbcompat/inplace.mk"
.include "../../mk/bsd.pkg.mk"
PREFIX:= ${PKG_TOOLS_PREFIX}
|