diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2009-02-03 02:07:28 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2009-02-03 02:07:28 +0000 |
commit | 18431b8e140669aa47ea2c607406481f299f6ca5 (patch) | |
tree | 212d4128827055a07649ce18a5f72cf5f7069196 /textproc/google-ctemplate | |
parent | 15ee03103aed3cb9a2520c080b24e324551c97c8 (diff) | |
download | ports-18431b8e140669aa47ea2c607406481f299f6ca5.tar.gz ports-18431b8e140669aa47ea2c607406481f299f6ca5.zip |
Upgrade to 0.93.
Notes
Notes:
svn path=/head/; revision=227483
Diffstat (limited to 'textproc/google-ctemplate')
-rw-r--r-- | textproc/google-ctemplate/Makefile | 2 | ||||
-rw-r--r-- | textproc/google-ctemplate/distinfo | 6 | ||||
-rw-r--r-- | textproc/google-ctemplate/files/patch-configure | 27 |
3 files changed, 31 insertions, 4 deletions
diff --git a/textproc/google-ctemplate/Makefile b/textproc/google-ctemplate/Makefile index 6f56374e6cfc..eeb7161db57f 100644 --- a/textproc/google-ctemplate/Makefile +++ b/textproc/google-ctemplate/Makefile @@ -7,7 +7,7 @@ # PORTNAME= google-ctemplate -PORTVERSION= 0.92 +PORTVERSION= 0.93 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= ctemplate-${PORTVERSION} diff --git a/textproc/google-ctemplate/distinfo b/textproc/google-ctemplate/distinfo index 1e07cca7c3d9..7327f51a8362 100644 --- a/textproc/google-ctemplate/distinfo +++ b/textproc/google-ctemplate/distinfo @@ -1,3 +1,3 @@ -MD5 (ctemplate-0.92.tar.gz) = 395a7cabc1cbe3149455ffe554151586 -SHA256 (ctemplate-0.92.tar.gz) = 7cb72faf8affdfa01e575648f6d63fd4cae49cb5c2a1a64dc1436a4c6495ac4a -SIZE (ctemplate-0.92.tar.gz) = 653752 +MD5 (ctemplate-0.93.tar.gz) = bd42a10bbbcf3e4bffd21663c0bd61fa +SHA256 (ctemplate-0.93.tar.gz) = dd42f3d610b6175ef40a0bf10d1b4dfc30d3a394ce93465bcb98ec3a37ef0910 +SIZE (ctemplate-0.93.tar.gz) = 715426 diff --git a/textproc/google-ctemplate/files/patch-configure b/textproc/google-ctemplate/files/patch-configure new file mode 100644 index 000000000000..806c3242590e --- /dev/null +++ b/textproc/google-ctemplate/files/patch-configure @@ -0,0 +1,27 @@ +--- configure.orig 2009-02-03 09:31:04.000000000 +0800 ++++ configure 2009-02-03 09:31:37.000000000 +0800 +@@ -21992,20 +21992,20 @@ + + + +-if test "$ac_cv___attribute__" == "yes"; then ++if test "$ac_cv___attribute__" = "yes"; then + ac_google_attribute=1 + + else + ac_google_attribute=0 + + fi +-if test "$ac_cv_type_u_int64_t" == "yes"; then ++if test "$ac_cv_type_u_int64_t" = "yes"; then + ac_cv_uint64=u_int64_t + +-elif test "$ac_cv_type_uint64_t" == "yes"; then ++elif test "$ac_cv_type_uint64_t" = "yes"; then + ac_cv_uint64=uint64_t + +-elif test "$ac_cv_type___int64" == "yes"; then ++elif test "$ac_cv_type___int64" = "yes"; then + ac_cv_uint64=unsigned __int64 + + else |