2013-01-07 20:50:20 +00:00
|
|
|
# Created by: Dennis Herrmann <adox@mcx2.org>
|
2008-12-14 10:35:10 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= wmfs
|
2011-04-12 21:25:55 +00:00
|
|
|
DISTVERSION= 201104
|
2012-06-01 05:26:28 +00:00
|
|
|
PORTREVISION= 1
|
2008-12-14 10:35:10 +00:00
|
|
|
CATEGORIES= x11-wm
|
2011-04-16 17:22:42 +00:00
|
|
|
MASTER_SITES= http://wmfs.info/attachments/download/45/ \
|
|
|
|
http://cloud.github.com/downloads/xorg62/wmfs/
|
2008-12-14 10:35:10 +00:00
|
|
|
|
2009-03-06 18:14:36 +00:00
|
|
|
MAINTAINER= dhn@FreeBSD.org
|
2008-12-14 10:35:10 +00:00
|
|
|
COMMENT= A floating and tiling Window Manager From Scratch
|
|
|
|
|
2012-10-02 16:40:40 +00:00
|
|
|
LICENSE= BSD
|
2010-11-26 12:52:01 +00:00
|
|
|
|
2010-01-25 09:38:22 +00:00
|
|
|
LIB_DEPENDS+= freetype.9:${PORTSDIR}/print/freetype2
|
2008-12-14 10:35:10 +00:00
|
|
|
|
2013-04-23 14:20:25 +00:00
|
|
|
USES= pkgconfig
|
2008-12-14 10:35:10 +00:00
|
|
|
USE_XORG= x11 xft xpm
|
2010-11-26 12:52:01 +00:00
|
|
|
HAS_CONFIGURE= yes
|
2008-12-14 10:35:10 +00:00
|
|
|
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
MANCOMPRESSED= yes
|
|
|
|
|
2011-04-12 21:25:55 +00:00
|
|
|
SUB_FILES= pkg-message
|
2008-12-14 10:35:10 +00:00
|
|
|
|
2013-01-07 20:50:20 +00:00
|
|
|
OPTIONS_DEFINE= XRANDR XINERAMA IMLIB
|
|
|
|
OPTIONS_DEFAULT= XRANDR XINERAMA IMLIB
|
2010-03-28 20:04:18 +00:00
|
|
|
|
2013-01-07 20:50:20 +00:00
|
|
|
.include <bsd.port.options.mk>
|
2008-12-14 10:35:10 +00:00
|
|
|
|
2010-11-26 12:52:01 +00:00
|
|
|
CONFIGURE_ARGS= --prefix ${PREFIX} \
|
|
|
|
--man-prefix ${MANPREFIX}/man \
|
|
|
|
--xdg-config-dir ${PREFIX}/etc/xdg
|
|
|
|
|
2013-01-07 20:50:20 +00:00
|
|
|
.if ${PORT_OPTIONS:MXRANDR}
|
2010-11-26 12:52:01 +00:00
|
|
|
USE_XORG+= xrandr
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-xrandr
|
2010-03-28 20:04:18 +00:00
|
|
|
.endif
|
|
|
|
|
2013-01-07 20:50:20 +00:00
|
|
|
.if ${PORT_OPTIONS:MXINERAMA}
|
2010-11-26 12:52:01 +00:00
|
|
|
USE_XORG+= xinerama
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-xinerama
|
|
|
|
.endif
|
2008-12-14 10:35:10 +00:00
|
|
|
|
2013-01-07 20:50:20 +00:00
|
|
|
.if ${PORT_OPTIONS:MIMLIB}
|
2010-11-26 12:52:01 +00:00
|
|
|
USE_EFL+= imlib2
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-imlib2
|
2008-12-14 10:35:10 +00:00
|
|
|
.endif
|
|
|
|
|
2010-11-26 12:52:01 +00:00
|
|
|
post-install:
|
2011-04-16 17:22:42 +00:00
|
|
|
@${CAT} ${PKGMESSAGE}
|
2008-12-14 10:35:10 +00:00
|
|
|
|
2013-01-07 20:50:20 +00:00
|
|
|
.include <bsd.port.mk>
|