From owner-svn-ports-head@FreeBSD.ORG Sat Oct 27 04:13:33 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5BD5EEA8; Sat, 27 Oct 2012 04:13:33 +0000 (UTC) (envelope-from ak@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 44A498FC08; Sat, 27 Oct 2012 04:13:33 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9R4DX7N082270; Sat, 27 Oct 2012 04:13:33 GMT (envelope-from ak@svn.freebsd.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9R4DXpb082268; Sat, 27 Oct 2012 04:13:33 GMT (envelope-from ak@svn.freebsd.org) Message-Id: <201210270413.q9R4DXpb082268@svn.freebsd.org> From: Alex Kozlov Date: Sat, 27 Oct 2012 04:13:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306480 - head/x11-wm/vtwm X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Oct 2012 04:13:33 -0000 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 .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