freebsd-ports/x11-wm/waimea-devel/Makefile
Alexey Dokuchaev dc8850369d Add waimea-devel, a highly customizable window manager with vector-based
style engine that takes advantage of display hardware acceleration.

Base on PR:	ports/74739
Submitted by:	flz
2005-03-03 13:58:44 +00:00

52 lines
1.1 KiB
Makefile

# New ports collection makefile for: Waimea
# Date created: 03 Mar 2005
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= waimea
PORTVERSION= 0.5.0.20041204
CATEGORIES= x11-wm
MASTER_SITES= http://www.ijs.si/~lesi/waimea/ \
http://www.daemon.li/distfiles/
MAINTAINER= danfe@FreeBSD.org
COMMENT= An X11 window manager designed for maximum efficiency
LIB_DEPENDS= expat.5:${PORTSDIR}/textproc/expat2 \
cairo.1:${PORTSDIR}/graphics/cairo
USE_BZIP2= yes
USE_GMAKE= yes
USE_ICONV= yes
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
OPTIONS= PNG "Enable PNG support" On \
SVG "Enable SVG support" On \
THREAD "Enable threading support" Off
.include <bsd.port.pre.mk>
.if defined(WITH_PNG)
LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png
.else
CONFIGURE_ARGS+= --disable-png
.endif
.if defined(WITH_SVG)
LIB_DEPENDS+= svg-cairo.1:${PORTSDIR}/graphics/libsvg-cairo
.else
CONFIGURE_ARGS+= --disable-svg
.endif
.if defined(WITH_THREAD)
CONFIGURE_ARGS+= --enable-thread
.endif
MAN1= waimea.1
.include <bsd.port.post.mk>