Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Oct 2012 04:13:33 +0000 (UTC)
From:      Alex Kozlov <ak@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r306480 - head/x11-wm/vtwm
Message-ID:  <201210270413.q9R4DXpb082268@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ak
Date: Sat Oct 27 04:13:32 2012
New Revision: 306480
URL: http://svn.freebsd.org/changeset/ports/306480

Log:
  - Convert Makefile headers to new style
  - Correct logic in NLS condition after OptionsNG conversion.
  - Remove ABI version numbers from LIB_DEPENDS
  
  Feature safe:	yes

Modified:
  head/x11-wm/vtwm/Makefile   (contents, props changed)

Modified: head/x11-wm/vtwm/Makefile
==============================================================================
--- head/x11-wm/vtwm/Makefile	Sat Oct 27 00:50:55 2012	(r306479)
+++ head/x11-wm/vtwm/Makefile	Sat Oct 27 04:13:32 2012	(r306480)
@@ -1,13 +1,9 @@
-# New ports collection makefile for:	vtwm
-# Date created:		21 December 1998
-# Whom:			bmah@ca.sandia.gov
-#
+# Created by:	bmah@ca.sandia.gov
 # $FreeBSD$
-#
 
 PORTNAME=	vtwm
 PORTVERSION=	5.4.7
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	x11-wm
 MASTER_SITES=	http://www.vtwm.org/downloads/
 
@@ -28,13 +24,13 @@ OPTIONS_DEFAULT=	SOUND NLS
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MSOUND}
-LIB_DEPENDS+=	rplay.1:${PORTSDIR}/audio/rplay
+LIB_DEPENDS+=	rplay:${PORTSDIR}/audio/rplay
 MAKE_ENV+=	SOUND=yes
 .else
 MAKE_ENV+=	SOUND=no
 .endif
 
-.if ${PORT_OPTIONS:MNLS}
+.if empty(PORT_OPTIONS:MNLS)
 CFLAGS+=	-DNO_I18N_SUPPORT
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210270413.q9R4DXpb082268>