blob: a8ce180dbfaef23939e77d61daac018b1b558524 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
# $NetBSD: Makefile,v 1.29 2021/05/14 12:05:38 nia Exp $
DISTNAME= pkg-1.10.99.7
CATEGORIES= pkgtools
MASTER_SITES= http://files.etoilebsd.net/pkg/
EXTRACT_SUFX= .tar.xz
MAINTAINER= khorben@defora.org
HOMEPAGE= https://wiki.freebsd.org/pkgng
COMMENT= Package management tool for FreeBSD
LICENSE= 2-clause-bsd
BOOTSTRAP_PKG= yes
GNU_CONFIGURE= yes
USE_CWRAPPERS= no
USE_LANGUAGES= c
LDFLAGS+= -pthread
CPPFLAGS+= -D_LOCALBASE="\"${PREFIX}\""
CPPFLAGS+= -DPORTSDIR="\"${PKG.portsdir}\""
CPPFLAGS+= -DDEFAULT_VULNXML_URL="\"http://muscles.dragonflybsd.org/pkgsrc-vuxml/vuln.xml.bz2\""
CFLAGS+= -DSYSCONFDIR=\"${PKG_SYSCONFDIR}\"
.if defined(DEBUG_PKGNG)
CFLAGS:= ${CFLAGS:N-O2} -ggdb -O0
_STRIPFLAG_INSTALL= # don't strip
.endif
AUTO_MKDIRS= yes
EGDIR= ${PREFIX}/share/examples/pkg
CONF_FILES+= ${EGDIR}/bash_completion.d/_pkg.bash \
${PKG_SYSCONFDIR}/bash_completion.d/_pkg.bash
CONF_FILES+= ${EGDIR}/periodic/daily/411.pkg-backup \
${PKG_SYSCONFDIR}/periodic/daily/411.pkg-backup
CONF_FILES+= ${EGDIR}/periodic/daily/490.status-pkg-changes \
${PKG_SYSCONFDIR}/periodic/daily/490.status-pkg-changes
CONF_FILES+= ${EGDIR}/periodic/security/410.pkg-audit \
${PKG_SYSCONFDIR}/periodic/security/410.pkg-audit
CONF_FILES+= ${EGDIR}/periodic/security/460.pkg-checksum \
${PKG_SYSCONFDIR}/periodic/security/460.pkg-checksum
CONF_FILES+= ${EGDIR}/periodic/weekly/400.status-pkg \
${PKG_SYSCONFDIR}/periodic/weekly/400.status-pkg
CONF_FILES+= ${EGDIR}/pkg.conf.sample \
${PKG_SYSCONFDIR}/pkg.conf
OWN_DIRS= ${PKG_SYSCONFDIR}/bash_completion.d \
${PKG_SYSCONFDIR}/periodic/daily \
${PKG_SYSCONFDIR}/periodic/security \
${PKG_SYSCONFDIR}/periodic/weekly
SUBST_CLASSES+= manpages-prefix
SUBST_STAGE.manpages-prefix= pre-install
SUBST_FILES.manpages-prefix= docs/pkg-install.8 docs/pkg-repo.8
SUBST_FILES.manpages-prefix+= docs/pkg-search.8 docs/pkg-update.8
SUBST_FILES.manpages-prefix+= docs/pkg-upgrade.8 docs/pkg.8
SUBST_FILES.manpages-prefix+= docs/pkg.conf.5
SUBST_SED.manpages-prefix+= -e "s|/usr/local|${PREFIX}|g"
SUBST_MESSAGE.manpages-prefix= Correct the installation prefix in manual pages.
SUBST_CLASSES+= pkgconf-prefix
SUBST_STAGE.pkgconf-prefix= pre-install
SUBST_FILES.pkgconf-prefix= src/pkg.conf.sample
SUBST_SED.pkgconf-prefix+= -e "s|/usr/local|${PREFIX}|g"
SUBST_MESSAGE.pkgconf-prefix= Correct the installation prefix in pkg.conf(5).
SUBST_CLASSES+= portsdir
SUBST_STAGE.portsdir= pre-install
SUBST_FILES.portsdir= src/pkg.conf.sample \
docs/pkg-create.8 \
docs/pkg-set.8 \
docs/pkg-repo.8 \
docs/pkg.conf.5 \
docs/pkg-version.8 \
docs/pkg.8
SUBST_SED.portsdir= -e "s|/usr/ports|${PKG.portsdir}|g" \
-e "s|/var/db/pkg|${PKGNG_DBDIR}|g" \
-e "s|/var/cache/pkg|${VARBASE}/cache/pkgng|g"
SUBST_MESSAGE.portsdir= Correct reference to FreeBSD portsdir.
SUBST_CLASSES+= config
SUBST_STAGE.config= pre-configure
SUBST_FILES.config= libpkg/pkg_config.c
SUBST_SED.config= -e "s|/usr/ports|${PKG.portsdir}|g" \
-e "s|/var/db/pkg|${PKGNG_DBDIR}|g" \
-e "s|/var/cache/pkg|${VARBASE}/cache/pkgng|g"
SUBST_MESSAGE.config= Update pkg(8) defaults.
SUBST_CLASSES+= vuxml
SUBST_STAGE.vuxml= pre-configure
SUBST_FILES.vuxml= libpkg/pkg_audit.c
SUBST_SED.vuxml= -e "s|https://vuxml.FreeBSD.org/freebsd|http://muscles.dragonflybsd.org/pkgsrc-vuxml/reports|"
SUBST_MESSAGE.vuxml= Direct audit reports to Pkgsrc vuxml
# Install manpages under ${PKGMANDIR}.
INSTALL_MAKE_FLAGS+= mandir=${PREFIX:Q}/${PKGMANDIR:Q}
.if defined(PACKAGE_BUILDING) # set by Synth which has custom location, so use default path
PKG.portsdir?= /usr/pkgsrc
.else
PKG.portsdir?= ${PKGSRCDIR}
.endif
# DragonFly SSL libraries are private. pkg(8) is the one exception of a userland
# program that is allowed to link to them due to bootstrap reasons
.if exists(/usr/lib/priv/libprivate_ssl.so)
BUILDLINK_PASSTHRU_RPATHDIRS= /lib/priv
.endif
post-patch:
# DragonFly SSL libraries are private.
.if exists(/usr/lib/priv/libprivate_ssl.so)
${SED} -i.bak \
-e 's|lssl|lprivate_ssl|' \
-e 's|lcrypto|lprivate_crypto|' \
-e 's|la_rpath = |la_rpath = -R/lib/priv |' \
${WRKSRC}/libpkg/Makefile.in \
${WRKSRC}/src/Makefile.in \
${WRKSRC}/tests/Makefile.in
${SED} -i.bak \
-e '/OS_CFLAGS=/ s|SOURCE|SOURCE -I/usr/include/priv|' \
-e '/OS_LDFLAGS=/ s|=|="-L/usr/lib/priv -R/lib/priv"|' \
${WRKSRC}/configure
.endif
post-install:
${RM} -rf ${DESTDIR}${EGDIR}/periodic
${MV} ${DESTDIR}${PREFIX}/etc/bash_completion.d \
${DESTDIR}${EGDIR}/
${MV} ${DESTDIR}${PREFIX}/etc/periodic \
${DESTDIR}${EGDIR}/
${MV} ${DESTDIR}${PREFIX}/etc/pkg.conf.sample \
${DESTDIR}${EGDIR}/
.include "../../mk/bsd.prefs.mk"
.if defined (PKG_DBDIR)
PKGNG_DBDIR?= ${PKG_DBDIR}
.else
PKGNG_DBDIR?= ${PREFIX}/pkgng-db
.endif
.if ${OPSYS} == "NetBSD"
BUILDLINK_TRANSFORM+= rm:-Wl,--enable-new-dtags
.endif
.if ${OPSYS} != "FreeBSD" && ${OPSYS} != "DragonFly" && ${OPSYS} != "NetBSD"
.include "../../archivers/libarchive/buildlink3.mk"
.include "../../devel/libbsd/buildlink3.mk"
.endif
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|