mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
2d62d7a96b
- Drop imake dependency. [2] - Move system.vtwmrc to another appropriate place. [2] - Fix font search algorithm. [2] - Bump PORTREVISION. [2] PR: ports/117438 Submitted by: bf <bf2006a@yahoo.com>, Alex Kozlov <spam@rm-rf.kiev.ua> (maintainer) Approved by: stas (mentor, implicit)
42 lines
745 B
Makefile
42 lines
745 B
Makefile
# New ports collection makefile for: vtwm
|
|
# Date created: 21 December 1998
|
|
# Whom: bmah@ca.sandia.gov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vtwm
|
|
PORTVERSION= 5.4.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= http://www.vtwm.org/downloads/
|
|
|
|
MAINTAINER= spam@rm-rf.kiev.ua
|
|
COMMENT= Twm with a virtual desktop and optional Motif-like features
|
|
|
|
USE_XORG= xpm xmu
|
|
|
|
ETCDIR?= ${PREFIX}/etc
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
|
|
|
MAN1= vtwm.1
|
|
|
|
OPTIONS= SOUND "Sound support" on \
|
|
NLS "Native language support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_SOUND)
|
|
LIB_DEPENDS+= rplay.1:${PORTSDIR}/audio/rplay
|
|
MAKE_ENV+= SOUND=yes
|
|
.else
|
|
MAKE_ENV+= SOUND=no
|
|
.endif
|
|
|
|
.if defined(WITHOUT_NLS)
|
|
CFLAGS+= -DNO_I18N_SUPPORT
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|