- Update to 0.23 release

- Switch maintainer to submitter

PR:		ports/87432
Submitted by:	Lapo Luchini <lapo@lapo.it>
Approved by:	maintainer
This commit is contained in:
Alex Dupre 2005-10-17 06:16:04 +00:00
parent 9336f843a3
commit 1089faec53
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=145617
4 changed files with 11 additions and 26 deletions

View File

@ -6,12 +6,12 @@
#
PORTNAME= monotone
PORTVERSION= 0.22
PORTVERSION= 0.23
CATEGORIES= devel
MASTER_SITES= http://www.venge.net/monotone/downloads/ \
http://norton.kettering.edu/freebsd/
MAINTAINER= mwicks@kettering.edu
MAINTAINER= lapo@lapo.it
COMMENT= A distributed version control system with digital signatures
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \

View File

@ -1,2 +1,2 @@
MD5 (monotone-0.22.tar.gz) = ee0f25577b8a640df3015113e67bb718
SIZE (monotone-0.22.tar.gz) = 5038069
MD5 (monotone-0.23.tar.gz) = 6d9e909480c2be0b23e2820c3a42e6f1
SIZE (monotone-0.23.tar.gz) = 5300093

View File

@ -1,13 +1,13 @@
--- monotone.cc.orig Fri Dec 31 03:16:53 2004
+++ monotone.cc Wed Jan 26 22:20:17 2005
@@ -140,8 +140,10 @@
--- monotone.cc.orig Fri Sep 30 11:50:05 2005
+++ monotone.cc Fri Oct 14 11:31:14 2005
@@ -238,8 +238,10 @@
// go-go gadget i18n
setlocale(LC_CTYPE, "");
setlocale(LC_MESSAGES, "");
setlocale(LC_ALL, "");
+#ifdef ENABLE_NLS
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
+#endif
L(F("set locale: LC_CTYPE=%s, LC_MESSAGES=%s\n")
% (setlocale(LC_CTYPE, NULL) == NULL ? "n/a" : setlocale(LC_CTYPE, NULL))
// we want to catch any early informative_failures due to charset

View File

@ -1,15 +0,0 @@
--- sanity.hh.orig Fri Dec 31 03:16:54 2004
+++ sanity.hh Wed Jan 26 22:20:17 2005
@@ -64,7 +64,12 @@
extern sanity global_sanity;
// F is for when you want to build a boost formatter
+#ifdef ENABLE_NLS
#define F(str) boost::format(gettext(str))
+#else
+#define F(str) boost::format((str))
+#endif
+
// L is for logging, you can log all you want
#define L(fmt) global_sanity.log(fmt, __FILE__, __LINE__)