blob: 0626b13dee902c9d0234f0ec02a5997c72f3af9f (
plain) (
blame)
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
|
PORTNAME= freebsd-bsdlabel
DISTVERSIONPREFIX= v
DISTVERSION= 15.0
PORTREVISION= 1
CATEGORIES= sysutils
MAINTAINER= cy@FreeBSD.org
COMMENT= FreeBSD bsdlabel
WWW= https://github.com/cschuber/freebsd-bsdlabel
LICENSE= BSD3CLAUSE
USE_GITHUB= yes
GH_ACCOUNT= cschuber
GH_PROJECT= freebsd-bsdlabel
USES= uidfix
MAKE_ARGS+= BINOWN=${BINOWN} BINMODE=${BINMODE}
MAKE_ENV+= MAKESYSPATH=/usr/src/share/mk \
BINDIR=${PREFIX}/sbin \
MANDIR=${PREFIX}/share/man/man \
MK_WERROR=no
WRKSRC_SUBDIR= bsdlabel
.include <bsd.port.options.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "i386"
PLIST_SUB= DISKLABEL=""
.else
PLIST_SUB= DISKLABEL="@comment "
.endif
.include <bsd.port.mk>
|