From owner-svn-ports-all@freebsd.org Mon Nov 30 20:42:46 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13DC0A3D2FF; Mon, 30 Nov 2015 20:42:46 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C88DD1887; Mon, 30 Nov 2015 20:42:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAUKgiZZ054170; Mon, 30 Nov 2015 20:42:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAUKgi5j054168; Mon, 30 Nov 2015 20:42:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201511302042.tAUKgi5j054168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 30 Nov 2015 20:42:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402698 - in head/japanese/today: . files 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.20 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: Mon, 30 Nov 2015 20:42:46 -0000 Author: amdmi3 Date: Mon Nov 30 20:42:44 2015 New Revision: 402698 URL: https://svnweb.freebsd.org/changeset/ports/402698 Log: - Fix fetch - Fix endianes detection - Pass maintainership to submitter PR: 204801 Submitted by: CQG00620@nifty.ne.jp Modified: head/japanese/today/Makefile head/japanese/today/files/patch-cunix.h Modified: head/japanese/today/Makefile ============================================================================== --- head/japanese/today/Makefile Mon Nov 30 20:32:35 2015 (r402697) +++ head/japanese/today/Makefile Mon Nov 30 20:42:44 2015 (r402698) @@ -3,17 +3,16 @@ PORTNAME= today PORTVERSION= 2.12 +PORTREVISION= 1 CATEGORIES= japanese games -MASTER_SITES= http://ftp.vector.co.jp/pack/dos/personal/calendar/today/ +MASTER_SITES= http://ftp.vector.co.jp/29/42/476/ DISTNAME= ja-${PORTNAME}-${PORTVERSION} DISTFILES= td${PORTVERSION:S/.//}s.lzh \ td${PORTVERSION:S/.//}m.lzh -MAINTAINER= ports@FreeBSD.org +MAINTAINER= CQG00620@nifty.ne.jp COMMENT= Tells you what day today is -BROKEN= unfetchable - EXTRACT_DEPENDS=nkf:${PORTSDIR}/japanese/nkf NO_WRKSUBDIR= yes Modified: head/japanese/today/files/patch-cunix.h ============================================================================== --- head/japanese/today/files/patch-cunix.h Mon Nov 30 20:32:35 2015 (r402697) +++ head/japanese/today/files/patch-cunix.h Mon Nov 30 20:42:44 2015 (r402698) @@ -1,6 +1,17 @@ ---- cunix.h.orig 2011-04-16 21:25:44.000000000 +0900 -+++ cunix.h 2011-04-16 21:27:40.000000000 +0900 -@@ -40,7 +40,9 @@ +--- cunix.h.orig 2015-11-23 17:47:06.000000000 +0900 ++++ cunix.h 2015-11-23 17:49:27.000000000 +0900 +@@ -29,6 +29,10 @@ + #include + #endif + ++#if defined(__FreeBSD__) ++#include ++#endif ++ + #define _T_EUC /* EUC 漢字コード */ + + #define _T_MAXROWS 24 /* 画面行数 */ +@@ -40,7 +44,9 @@ #define _T_TMPENV "TEMP" /* temporary 環境変数名 */ #define _T_TMPENV2 "TMPDIR" /* temporary 環境変数名 */ #define _T_TMPDIR "/tmp" /* temporary directory */ @@ -10,7 +21,27 @@ /* default search path list */ #define _T_HOMEENV "HOME" /* home 環境変数 */ #define _T_PATHENV "PATH" /* path 環境変数名 */ -@@ -60,7 +62,7 @@ +@@ -50,6 +56,15 @@ + /* path name of executed command */ + #define _T_EXECCMDPATH "ExecCmdPath" /* $ExecCmdPath => search_cmdpath */ + #define _T_OPENFLAG (O_RDONLY) ++#if defined(__FreeBSD__) ++#if _BYTE_ORDER == _LITTLE_ENDIAN ++#define _T_LITTLE_ENDIAN ++#define _T_LITTLE_ENDIAN_BITFIELD ++#else ++#define _T_BIG_ENDIAN ++#define _T_BIG_ENDIAN_BITFIELD ++#endif ++#else + #if defined(i386) + #define _T_LITTLE_ENDIAN + #define _T_LITTLE_ENDIAN_BITFIELD +@@ -57,10 +72,11 @@ + #define _T_BIG_ENDIAN + #define _T_BIG_ENDIAN_BITFIELD + #endif ++#endif #define _T_OUTFILE_DEFAULT "%c%y%m%d.today" #define _T_OUTFILE_TMPNAME "%p.today"