summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_comp/Makefile
blob: 21ef5b6706b2cb49b8fd2e39816e51bc08f92597 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# $NetBSD: Makefile,v 1.61 2019/01/14 10:53:37 jmmv Exp $

DISTNAME=	pkg_comp-2.1
CATEGORIES=	sysutils
MASTER_SITES=	${MASTER_SITE_GITHUB:=jmmv/}pkg_comp/releases/download/pkg_comp-2.1/

MAINTAINER=	jmmv@NetBSD.org
COMMENT=	Automates builds of packages and manages pkgsrc trees
LICENSE=	modified-bsd

DEPENDS=	sandboxctl>=1.1:../../sysutils/sandboxctl

GNU_CONFIGURE=		yes
TEST_TARGET=		check
USE_LANGUAGES=		# empty
USE_TOOLS=		pkg-config

PKG_SYSCONFSUBDIR=	pkg_comp
CONFIGURE_ARGS+=	--sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+=	PKG_COMP_CONFSUBDIR=
CONFIGURE_ARGS+=	SANDBOXCTL=${PREFIX}/sbin/sandboxctl
INSTALL_MAKE_FLAGS+=	pkg_comp_confdir=${EGDIR}
EGDIR=			${PREFIX}/share/examples/pkg_comp
CONF_FILES+=		${EGDIR}/default.conf ${PKG_SYSCONFDIR}/default.conf
CONF_FILES+=		${EGDIR}/extra.mk.conf ${PKG_SYSCONFDIR}/extra.mk.conf
CONF_FILES+=		${EGDIR}/sandbox.conf ${PKG_SYSCONFDIR}/sandbox.conf

# Substitute for the correct location of the configuration files
# for sandboxctl.
SUBST_CLASSES+=		sandboxctl
SUBST_STAGE.sandboxctl=	pre-configure
SUBST_FILES.sandboxctl=	sandbox.conf.in
SUBST_SED.sandboxctl=	-e 's,__PKG_COMP_BASESYSCONFDIR__/sandboxctl/,${SANDBOXCTL_SYSCONFDIR}/,g'
SANDBOXCTL_SYSCONFDIR=	${PKG_SYSCONFDIR.sandboxctl:U${PKG_SYSCONFBASE}/sandboxctl}

PKG_OPTIONS_VAR=	PKG_OPTIONS.pkg_comp
PKG_SUPPORTED_OPTIONS=	tests
PKG_SUGGESTED_OPTIONS=	tests

.include "../../mk/bsd.options.mk"

.if !empty(PKG_OPTIONS:Mtests)
.  include "../../devel/atf/buildlink3.mk"
PLIST_SUBST+=		TESTS=
.else
CONFIGURE_ARGS+=	--with-atf=no
PLIST_SUBST+=		TESTS=@comment

post-install:
	rm -rf "${PREFIX}/share/tests/pkg_comp"
.endif

BUILDLINK_API_DEPENDS.shtk+=	shtk>=1.7
.include "../../devel/shtk/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"