From owner-svn-ports-all@FreeBSD.ORG Fri Aug 23 00:06:38 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4704BEA4; Fri, 23 Aug 2013 00:06:38 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 33BC42FFB; Fri, 23 Aug 2013 00:06:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7N06cLT032989; Fri, 23 Aug 2013 00:06:38 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7N06cdU032988; Fri, 23 Aug 2013 00:06:38 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201308230006.r7N06cdU032988@svn.freebsd.org> From: John Marino Date: Fri, 23 Aug 2013 00:06:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325246 - head/japanese/eb X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Aug 2013 00:06:38 -0000 Author: marino Date: Fri Aug 23 00:06:37 2013 New Revision: 325246 URL: http://svnweb.freebsd.org/changeset/ports/325246 Log: japanese/eb: Make gettext dependency a condition of NLS PORTREVISION bumped to reset dependencies for folks that don't use NLS. PR: 181205 Submitted by: az Reviewed by: jgh, marino Approved by: bapt/culot (mentors, implicit) Modified: head/japanese/eb/Makefile Modified: head/japanese/eb/Makefile ============================================================================== --- head/japanese/eb/Makefile Thu Aug 22 23:55:13 2013 (r325245) +++ head/japanese/eb/Makefile Fri Aug 23 00:06:37 2013 (r325246) @@ -3,6 +3,7 @@ PORTNAME= eb PORTVERSION= 4.4.3 +PORTREVISION= 1 CATEGORIES= japanese MASTER_SITES= ftp://ftp.sra.co.jp/pub/misc/eb/ \ ftp://ftp.sra.co.jp/pub/misc/eb/old/eb-${PORTVERSION:C/^([0-9]+)\.([0-9]+).*/\1.\2/}/ @@ -65,7 +66,7 @@ PORTDOCS= eb-01.html eb-02.html eb-03.ht USE_AUTOTOOLS= libtool USE_BZIP2= yes -USES= gettext perl5 +USES= perl5 GNU_CONFIGURE= yes USE_LDCONFIG= yes CONFIGURE_ARGS= --with-pkgdocdir=${DOCSDIR} @@ -77,6 +78,7 @@ APPENDIXDIR= ${DATADIR}/appendix .include .if ${PORT_OPTIONS:MNLS} +USES+= gettext CONFIGURE_ARGS+= --enable-nls \ --with-gettext-includes=${LOCALBASE}/include \ --with-gettext-libraries=${LOCALBASE}/lib \ @@ -84,6 +86,7 @@ CONFIGURE_ARGS+= --enable-nls \ --with-iconv-libraries=${LOCALBASE}/lib PLIST_SUB= NLS="" .else +CONFIGURE_ARGS+= --disable-nls PLIST_SUB= NLS="@comment " .endif