1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/x11-wm/awesome/Makefile
Niclas Zeising 4c46ca73d8 Add USES=xorg USES=gl, ports categories x
Add USES=xorg and USES=gl to ports in categories starting with 'x'
While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
2019-11-07 18:36:55 +00:00

69 lines
2.0 KiB
Makefile

# Created by: Nikos Ntarmos <ntarmos@ceid.upatras.gr>
# $FreeBSD$
PORTNAME= awesome
PORTVERSION= 4.3
PORTREVISION= 1
DISTVERSIONPREFIX= v
PORTEPOCH= 1
CATEGORIES= x11-wm
MAINTAINER= dbaio@FreeBSD.org
COMMENT= Highly configurable, next generation framework window manager
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= convert:graphics/ImageMagick6 \
${LUA_MODLIBDIR}/lgi/corelgilua${LUA_VER_STR}.so:devel/lua-lgi
RUN_DEPENDS= ${LUA_MODLIBDIR}/lgi/corelgilua${LUA_VER_STR}.so:devel/lua-lgi \
bash:shells/bash
LIB_DEPENDS= libcairo.so:graphics/cairo \
libstartup-notification-1.so:x11/startup-notification \
libxdg-basedir.so:x11/libxdg-basedir \
libxcb-cursor.so:x11/xcb-util-cursor \
libxcb-util.so:x11/xcb-util \
libxcb-keysyms.so:x11/xcb-util-keysyms \
libxcb-icccm.so:x11/xcb-util-wm \
libxcb-xrm.so:x11/xcb-util-xrm \
libxkbcommon.so:x11/libxkbcommon
CONFLICTS_INSTALL= awesome3-[0-9]*
USES= cmake compiler:c11 gettext gnome iconv pkgconfig lua \
shebangfix xorg
USE_GITHUB= yes
GH_ACCOUNT= awesomewm
SHEBANG_FILES= utils/awesome-client
CMAKE_ARGS= -DSYSCONFDIR=${PREFIX}/etc \
-DAWESOME_MAN_PATH=${MANPREFIX}/man \
-DGENERATE_DOC=OFF \
-DLUA_INCLUDE_DIR=${LUA_INCDIR}
USE_GNOME= glib20 pango gdkpixbuf2
USE_XORG= pixman x11 xau xcb xdmcp xext xft xinerama xrandr xrender \
xorgproto
OPTIONS_DEFINE= DBUS DOCS MANPAGES
OPTIONS_DEFAULT=DBUS MANPAGES
OPTIONS_SUB= yes
DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus
DBUS_CMAKE_OFF= -DWITH_DBUS:BOOL=OFF
MANPAGES_BUILD_DEPENDS= asciidoctor:textproc/rubygem-asciidoctor
MANPAGES_CMAKE_OFF= -DGENERATE_MANPAGES:BOOL=OFF
.include <bsd.port.pre.mk>
.if (exists(${LOCALBASE}/libdata/pkgconfig/cairo.pc) && \
!exists(${LOCALBASE}/libdata/pkgconfig/cairo-xcb.pc))
IGNORE= cannot find dependency: The cairo exists but not with XCB support. Please reinstall graphics/cairo with XCB support
.endif
post-patch:
# Ref https://github.com/awesomeWM/awesome/issues/1377
@${REINPLACE_CMD} -e "/COMMAND lua/ s,lua,${LUA_CMD}," \
${WRKSRC}/awesomeConfig.cmake
.include <bsd.port.post.mk>