diff options
author | vanilla <vanilla@FreeBSD.org> | 2009-02-03 10:07:28 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2009-02-03 10:07:28 +0800 |
commit | aa8c4bda9ad746e50153322ada3b4224228ce54a (patch) | |
tree | 569f207d373f747d944886dab66d96c742794942 /textproc/google-ctemplate | |
parent | 094314fc2b0c180aec6f5c3d5553a2ac1c28fa82 (diff) | |
download | freebsd-ports-gnome-aa8c4bda9ad746e50153322ada3b4224228ce54a.tar.gz freebsd-ports-gnome-aa8c4bda9ad746e50153322ada3b4224228ce54a.tar.zst freebsd-ports-gnome-aa8c4bda9ad746e50153322ada3b4224228ce54a.zip |
Upgrade to 0.93.
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 |