blob: e8bd5c087d558a0610014ae9245c7b0515bf8263 (
plain) (
blame)
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
|
# Created by: Alexey Dokuchaev <danfe@regency.nsu.ru>
# $FreeBSD$
PORTNAME= waimea
PORTVERSION= 0.4.0
PORTREVISION= 10
CATEGORIES= x11-wm
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/v${PORTVERSION}
MAINTAINER= c.petrik.sosa@gmail.com
COMMENT= An X11 window manager designed for maximum efficiency
RUN_DEPENDS= ${LOCALBASE}/bin/Esetroot:${PORTSDIR}/x11/eterm
DEPRECATED= Development ceased
EXPIRATION_DATE= 2012-11-05
USE_BZIP2= yes
USE_XORG= xft
USE_PERL5_RUN= yes
GNU_CONFIGURE= yes
MAN1= waimea.1
OPTIONS_DEFINE= PIXMAP DITHER
OPTIONS_DEFAULT= PIXMAP
PIXMAP_DESC= Build with pixmap textures support
DITHER_DESC= =Enable ordered pseudocolor dithering
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPIXMAP}
USE_EFL+= imlib2
.endif
.if ${PORT_OPTIONS:MDITHER}
CONFIGURE_ARGS+= --enable-ordered-pseudo
.endif
.include <bsd.port.mk>
|