blob: 81f629d63e3b06cbd4915506261c2f9a671e341e (
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
26
27
28
29
30
31
32
33
34
|
# $NetBSD: Makefile,v 1.9 2003/12/20 04:55:04 grant Exp $
#
DISTNAME= mtree-20031220
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= grant@NetBSD.org
HOMEPAGE= http://www.NetBSD.org/
COMMENT= Utility for mapping and checking directory hierarchies
USE_BUILDLINK2= # defined
GNU_CONFIGURE= # defined
NO_PKGTOOLS_REQD_CHECK= # defined
NO_CHECKSUM= # defined
NO_MTREE= # defined
NO_PKG_REGISTER= # defined
NO_PACKAGE= Deinstallation is not permitted
PKG_PRESERVE= # defined
do-extract:
@${CP} -Rp ${FILESDIR} ${WRKSRC}
.include "../../pkgtools/libnbcompat/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
PREFIX:= ${PKG_TOOLS_BIN:C|/[^/]?bin$||}
.if ${PREFIX} == "/usr"
CONFIGURE_ARGS+= --mandir=${PREFIX}/share/man
.else
CONFIGURE_ARGS+= --mandir=${PREFIX}/man
.endif
|