blob: 4075f53185243c905c646647b551b17e4d2dfb8e (
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
|
# $OpenBSD: Makefile.template,v 1.83 2019/07/02 12:03:14 sthen Exp $
#
COMMENT = the X protocol C-language binding library
#
# What port/package will be created
#
DISTNAME = libxcb-1.13.1
SHARED_LIBS = xcb 4.0 \
xcb-composite 1.0 \
xcb-damage 1.0 \
xcb-dpms 1.0 \
xcb-dri2 1.1 \
xcb-dri3 0.1 \
xcb-glx 1.1 \
xcb-present 0.1 \
xcb-randr 2.3 \
xcb-record 1.1 \
xcb-render 1.1 \
xcb-res 1.1 \
xcb-screensaver 1.1 \
xcb-shape 1.1 \
xcb-shm 1.1 \
xcb-sync 1.2 \
xcb-xf86dri 2.0 \
xcb-xfixes 1.2 \
xcb-xinerama 1.0 \
xcb-xinput 0.0 \
xcb-xkb 0.1 \
xcb-xtest 1.0 \
xcb-xv 1.1 \
xcb-xvmc 1.0
CATEGORIES = x11
HOMEPAGE = https://xcb.freedesktop.org/
MAINTAINER = xenocara@openbsd.org
# MIT
PERMIT_PACKAGE = Yes
WANTLIB = Xau
MASTER_SITES = https://xcb.freedesktop.org/dist/
BUILD_DEPENDS = devel/xcb-proto
LIB_DEPENDS = x11/libXau
SEPARATE_BUILD = Yes
CONFIGURE_STYLE = autoreconf
# for gnu stuff
AUTOCONF_VERSION = 2.69
AUTOMAKE_VERSION = 1.12
# 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
.include <bsd.port.mk>
|