blob: dd0211f6f1578f41841c473cc3c4f194daa0c850 (
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
|
# Created by: Bruce A. Mah <bmah@ca.sandia.gov>
# $FreeBSD$
PORTNAME= vtwm
PORTVERSION= 5.4.7
PORTREVISION= 4
CATEGORIES= x11-wm
MASTER_SITES= SF http://www.vtwm.org/downloads/
MAINTAINER= ak@FreeBSD.org
COMMENT= Twm with a virtual desktop and optional Motif-like features
LICENSE= MIT
USE_XORG= xpm xmu
MAKEFILE= ${FILESDIR}/Makefile.bsd
ETCDIR?= ${PREFIX}/etc
MAN1= vtwm.1
OPTIONS_DEFINE= SOUND NLS
OPTIONS_DEFAULT= SOUND NLS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSOUND}
LIB_DEPENDS+= librplay.so:${PORTSDIR}/audio/rplay
MAKE_ENV+= SOUND=yes
.else
MAKE_ENV+= SOUND=no
.endif
.if ! ${PORT_OPTIONS:MNLS}
CFLAGS+= -DNO_I18N_SUPPORT
.endif
.include <bsd.port.mk>
|