Bug 179629 - Update port: ftp/yafc to 1.2.5 (with more fix of NLS support)
Summary: Update port: ftp/yafc to 1.2.5 (with more fix of NLS support)
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: William Grzybowski
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-17 05:10 UTC by Norihiko Murase
Modified: 2013-06-17 14:00 UTC (History)
0 users

See Also:


Attachments
file.diff (1.55 KB, patch)
2013-06-17 05:10 UTC, Norihiko Murase
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Norihiko Murase 2013-06-17 05:10:00 UTC
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:
Comment 1 William Grzybowski freebsd_committer freebsd_triage 2013-06-17 13:06:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->wg

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-06-17 13:52:18 UTC
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"
Comment 3 William Grzybowski freebsd_committer freebsd_triage 2013-06-17 13:52:34 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!