diff options
author | Matthieu Herrb <matthieu@herrb.eu> | 2021-05-02 18:41:47 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@herrb.eu> | 2021-05-02 18:54:18 +0200 |
commit | 0671fae7aa331a1ffe8f5097228baff0d8788d46 (patch) | |
tree | 1b1e0245b497b35e3b518028448d5759a07dcd29 /x11/xinit/Makefile | |
parent | 1647381d679a7145461fca9e5b6aace6ee4d69a3 (diff) |
add x11/xinit
Diffstat (limited to 'x11/xinit/Makefile')
-rw-r--r-- | x11/xinit/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/x11/xinit/Makefile b/x11/xinit/Makefile new file mode 100644 index 0000000..6c4e0da --- /dev/null +++ b/x11/xinit/Makefile @@ -0,0 +1,32 @@ +# $OpenBSD: Makefile.template,v 1.83 2019/07/02 12:03:14 sthen Exp $ +COMMENT = X server & client startup utilities + +DISTNAME = xinit-1.4.1 +CATEGORIES = x11 + +HOMEPAGE = https://gitlab.freedesktop.org/xorg/app/xinit + +MAINTAINER = xenocara@openbsd.org + +# MIT +PERMIT_PACKAGE = Yes + +WANTLIB = X11 c + +MASTER_SITES = ${MASTER_SITE_XORG:=app/} + +# Dependencies +BUILD_DEPENDS = devel/xorgproto + +LIB_DEPENDS = x11/libX11 + +SEPARATE_BUILD = Yes +CONFIGURE_STYLE = gnu + +NO_TEST = Yes + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/xinit + mv ${WRKINST}/${SYSCONFDIR}/X11/xinit/xinitrc ${PREFIX}/share/examples/xinit/ + +.include <bsd.port.mk> |