aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpawel <pawel@FreeBSD.org>2011-10-27 05:56:03 +0800
committerpawel <pawel@FreeBSD.org>2011-10-27 05:56:03 +0800
commit1037689275350c9e2fbf06bb785654a0be748e46 (patch)
treee63858ed1323e311c811a504c4db25cab9b50991
parent841255d743409e0f29ce324ed2eb6922f722e5bf (diff)
downloadfreebsd-ports-gnome-1037689275350c9e2fbf06bb785654a0be748e46.tar.gz
freebsd-ports-gnome-1037689275350c9e2fbf06bb785654a0be748e46.tar.zst
freebsd-ports-gnome-1037689275350c9e2fbf06bb785654a0be748e46.zip
Blitz is a PHP templating engine with two main features:
Fast. Blitz is written in C and built as PHP-extension which makes it one of the fastest template engines (you may see the benchmarks section below) Clear. Blitz has quite simple and clear syntax and makes developer to build compact and easy-to-read-and-support code even for applications with very complex presentation logic WWW: http://alexeyrybak.com/blitz/blitz_en.html PR: ports/159908 Submitted by: Valery Komarov <komarov@valerka.net>
-rw-r--r--devel/Makefile1
-rw-r--r--devel/php5-blitz-devel/Makefile25
-rw-r--r--devel/php5-blitz-devel/distinfo2
-rw-r--r--devel/php5-blitz-devel/pkg-descr10
4 files changed, 38 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile
index d7b7ff746d38..7ffb090dd308 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -2839,6 +2839,7 @@
SUBDIR += php4-sysvshm
SUBDIR += php4-tokenizer
SUBDIR += php5-blitz
+ SUBDIR += php5-blitz-devel
SUBDIR += php5-geshi
SUBDIR += php5-gettext
SUBDIR += php5-ice
diff --git a/devel/php5-blitz-devel/Makefile b/devel/php5-blitz-devel/Makefile
new file mode 100644
index 000000000000..80ad1a67ecb5
--- /dev/null
+++ b/devel/php5-blitz-devel/Makefile
@@ -0,0 +1,25 @@
+# New ports collection makefile for: php5-blitz-devel
+# Date created: 2011-08-19
+# Whom: Valery Komarov <komarov@valerka.net>
+#
+# $FreeBSD$
+
+PORTNAME= blitz-devel
+PORTVERSION= 0.7.1.11
+CATEGORIES= devel
+MASTER_SITES= http://alexeyrybak.com/blitz/
+PKGNAMEPREFIX= php5-
+DISTNAME= blitz-${PORTVERSION}-devel
+
+MAINTAINER= komarov@valerka.net
+COMMENT= PHP templating engine
+
+CONFLICTS= php5-blitz-0.6*
+
+USE_PHP= yes
+USE_PHP_BUILD= yes
+USE_PHPEXT= yes
+PHP_MODNAME= blitz
+IGNORE_WITH_PHP=4
+
+.include <bsd.port.mk>
diff --git a/devel/php5-blitz-devel/distinfo b/devel/php5-blitz-devel/distinfo
new file mode 100644
index 000000000000..f7820ae61fb1
--- /dev/null
+++ b/devel/php5-blitz-devel/distinfo
@@ -0,0 +1,2 @@
+SHA256 (blitz-0.7.1.11-devel.tar.gz) = c6416e44ee7ca965f13264533d66c6a245714b982257df18358a8d18cc54ff93
+SIZE (blitz-0.7.1.11-devel.tar.gz) = 131418
diff --git a/devel/php5-blitz-devel/pkg-descr b/devel/php5-blitz-devel/pkg-descr
new file mode 100644
index 000000000000..c01c8519276a
--- /dev/null
+++ b/devel/php5-blitz-devel/pkg-descr
@@ -0,0 +1,10 @@
+Blitz is a PHP templating engine with two main features:
+
+Fast. Blitz is written in C and built as PHP-extension which makes it one of
+ the fastest template engines (you may see the benchmarks section below)
+
+Clear. Blitz has quite simple and clear syntax and makes developer to build
+ compact and easy-to-read-and-support code even for applications with very
+ complex presentation logic
+
+WWW: http://alexeyrybak.com/blitz/blitz_en.html