blob: 586d2d6f7b75c4fd805b4811cbf6f79095027b58 (
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
|
# $OpenBSD: Makefile.template,v 1.83 2019/07/02 12:03:14 sthen Exp $
#
# Replace ??? with appropriate values
# Remove extraneous comments before commit
# Use /usr/ports/infrastructure/bin/portcheck
# Reasons why the port/package shouldn't be built
#
#ONLY_FOR_ARCHS = ???
#NOT_FOR_ARCHS = ???
#COMES_WITH = ???
#BROKEN = reason
COMMENT = X Window System unified protocol definitions
DISTNAME = xorgproto-2019.1
CATEGORIES = devel
HOMEPAGE = https://gitlab.freedesktop.org/xorg/proto/xorgproto
MAINTAINER = xenocara@openbsd.org
# MIT
PERMIT_PACKAGE = Yes
#PERMIT_DISTFILES = Yes
MASTER_SITES = ${MASTER_SITE_XORG:=proto/}
# Dependencies
#MODULES = ???
#BUILD_DEPENDS = ???
#RUN_DEPENDS = ???
#LIB_DEPENDS = ???
#TEST_DEPENDS = ???
#MAKE_FLAGS = ???
#MAKE_ENV = ???
#FAKE_FLAGS = ???
#TEST_FLAGS = ???
# build/configuration variables
#
SEPARATE_BUILD = Yes
CONFIGURE_STYLE = gnu
# for gnu stuff
#AUTOCONF_VERSION = ??? (defaults to 2.13)
#AUTOMAKE_VERSION = ??? (defaults to 1.4)
# config.guess and others are copied here
#MODGNU_CONFIG_GUESS_DIRS = ??? (defaults to ${WRKSRC})
# Is the build automagic or is it interactive
#
#IS_INTERACTIVE = Yes
#TEST_IS_INTERACTIVE = Yes
# Things that we don't want to do for this port/package
# Generally, DON'T set anything to No if it's not needed.
# The time gained is not worth it.
#
#NO_BUILD = Yes
NO_TEST = Yes
# Overrides for default values
#
#CFLAGS = ???
#LDFLAGS = ???
#MAKE_FILE = ???
#PKG_ARCH = ??? (* for arch-independent packages)
#WRKDIST = ??? if other than ${WRKDIR}/${DISTNAME}
#WRKSRC = ??? if other than ${WRKDIST}
#WRKBUILD = ??? if other than ${WRKSRC}
#WRKCONF = ??? if other than ${WRKBUILD}
#ALL_TARGET = ???
#INSTALL_TARGET = ???
#TEST_TARGET = ???
# For ports that use a script or autoreconf to generate autoconf/automake
# files (where "CONFIGURE_STYLE=autoconf" isn't enough), use some/all of these
# dependencies, and add a do-gen target:
#
#BUILD_DEPENDS = ${MODGNU_AUTOCONF_DEPENDS} \
# ${MODGNU_AUTOMAKE_DEPENDS} \
# devel/libtool
#
#do-gen:
# cd ${WRKSRC}; ${AUTOCONF_ENV} ./autogen.sh
.include <bsd.port.mk>
|