The new release of Yafc is available, which is 1.2.5. Also, "more" fix of NLS support is included. * The configure option for NLS support *MUST* be specified explicitly, just as the following: --with-gettext=/usr/local NOTE that the prefix directory for gettext is also required. Without this, the configure script does NOT recognize gettext and NLS is NOT enabled. (In this regard the SVN commit r316138 is incomplete.) * The following lines in Makefile CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib are NOT necessary any longer. These lines are added for enabling the NLS support, but now the configure script does recognize gettext correctly via "--with-gettext=/usr/local". Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->wg I'll take it.
Author: wg Date: Mon Jun 17 12:52:05 2013 New Revision: 321104 URL: http://svnweb.freebsd.org/changeset/ports/321104 Log: ftp/yafc: update to 1.2.5 - Update to 1.2.5 [1] - Fix path for gettext in configure [1] - Add missing READLINE option - Take maintainership PR: ports/179629 [1] Submitted by: Norihiko Murase <mur1080224@inter7.jp> Approved by: culot / jpaetzel (mentors, implicit) Modified: head/ftp/yafc/Makefile head/ftp/yafc/distinfo Modified: head/ftp/yafc/Makefile ============================================================================== --- head/ftp/yafc/Makefile Mon Jun 17 12:03:14 2013 (r321103) +++ head/ftp/yafc/Makefile Mon Jun 17 12:52:05 2013 (r321104) @@ -2,16 +2,16 @@ # $FreeBSD$ PORTNAME= yafc -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.5 CATEGORIES= ftp ipv6 MASTER_SITES= http://www.yafc-ftp.com/upload/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= wg@FreeBSD.org COMMENT= Yet another ftp client. Similar to ftp(1) LICENSE= GPLv2 # (or later) -OPTIONS_DEFINE= BASH EXAMPLES NLS SSH +OPTIONS_DEFINE= BASH EXAMPLES NLS SSH READLINE OPTIONS_DEFAULT=BASH NLS SSH USE_XZ= yes @@ -36,6 +36,7 @@ PLIST_FILES= bin/yafc .if ${PORT_OPTIONS:MNLS} USE_GNOME+= intltool USES+= gettext +CONFIGURE_ARGS+= --with-gettext=${LOCALBASE} PLIST_FILES+= share/locale/de/LC_MESSAGES/yafc.mo \ share/locale/sv/LC_MESSAGES/yafc.mo .else Modified: head/ftp/yafc/distinfo ============================================================================== --- head/ftp/yafc/distinfo Mon Jun 17 12:03:14 2013 (r321103) +++ head/ftp/yafc/distinfo Mon Jun 17 12:52:05 2013 (r321104) @@ -1,2 +1,2 @@ -SHA256 (yafc-1.2.4.tar.xz) = 05617edfd477c07e50c0773ca8b21d94e8cbd5b624ad0d0eb6f712563b32676e -SIZE (yafc-1.2.4.tar.xz) = 362112 +SHA256 (yafc-1.2.5.tar.xz) = df93b1b8795b49852d555b57b775da4af4fe10baa420b0321f80689f94c45d81 +SIZE (yafc-1.2.5.tar.xz) = 364664 _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, with minor changes. Thanks!