aboutsummaryrefslogtreecommitdiff
path: root/devel/pecl-bcompiler
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2006-11-07 17:48:40 +0000
committerMartin Wilke <miwi@FreeBSD.org>2006-11-07 17:48:40 +0000
commit865859206729bd90ebc415097cc38d2f636862b4 (patch)
treebff4c6cde891f2a8e2eea7ebd125d296bfd1e8a8 /devel/pecl-bcompiler
parent65f5ec278464af39f349292b2477440e76f07f3a (diff)
downloadports-865859206729bd90ebc415097cc38d2f636862b4.tar.gz
ports-865859206729bd90ebc415097cc38d2f636862b4.zip
bcompiler enables you to encode your scripts in phpbytecode,
enabling you to protect the source code. bcompiler could be used in the following situations - to create a exe file of a PHP-GTK application (in conjunction with other software) - to create closed source libraries - to provide clients with time expired software (prior to payment) - to deliver close source applications - for use on embedded systems, where disk space is a priority. WWW: http://pecl.php.net/package/bcompiler/ PR: ports/104760 Submitted by: chinsan@
Notes
Notes: svn path=/head/; revision=176732
Diffstat (limited to 'devel/pecl-bcompiler')
-rw-r--r--devel/pecl-bcompiler/Makefile24
-rw-r--r--devel/pecl-bcompiler/distinfo3
-rw-r--r--devel/pecl-bcompiler/pkg-descr12
3 files changed, 39 insertions, 0 deletions
diff --git a/devel/pecl-bcompiler/Makefile b/devel/pecl-bcompiler/Makefile
new file mode 100644
index 000000000000..c40a24e087d9
--- /dev/null
+++ b/devel/pecl-bcompiler/Makefile
@@ -0,0 +1,24 @@
+# New ports collection makefile for: pecl-bcompiler
+# Date created: 2006/10/25
+# Whom: chinsan <chinsan@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= bcompiler
+PORTVERSION= 0.8
+CATEGORIES= devel pear
+MASTER_SITES= http://pecl.php.net/get/
+PKGNAMEPREFIX= pecl-
+EXTRACT_SUFX= .tgz
+DIST_SUBDIR= PECL
+
+MAINTAINER= chinsan.tw@gmail.com
+COMMENT= A bytecode compiler extension
+
+USE_PHP= bz2
+USE_PHPEXT= yes
+
+CONFIGURE_ARGS= --enable-bcompiler
+
+.include <bsd.port.mk>
diff --git a/devel/pecl-bcompiler/distinfo b/devel/pecl-bcompiler/distinfo
new file mode 100644
index 000000000000..1a89ddcf838c
--- /dev/null
+++ b/devel/pecl-bcompiler/distinfo
@@ -0,0 +1,3 @@
+MD5 (PECL/bcompiler-0.8.tgz) = bfc5646f8f7c1c2649d82f5a4e3c0760
+SHA256 (PECL/bcompiler-0.8.tgz) = 9ce5fc8fa1f095f392c8bd19a5690693cf9d51225ec2561dc20416abe08a034e
+SIZE (PECL/bcompiler-0.8.tgz) = 46667
diff --git a/devel/pecl-bcompiler/pkg-descr b/devel/pecl-bcompiler/pkg-descr
new file mode 100644
index 000000000000..32a82dff5dee
--- /dev/null
+++ b/devel/pecl-bcompiler/pkg-descr
@@ -0,0 +1,12 @@
+bcompiler enables you to encode your scripts in phpbytecode,
+enabling you to protect the source code.
+bcompiler could be used in the following situations
+
+- to create a exe file of a PHP-GTK application (in conjunction with other
+software)
+- to create closed source libraries
+- to provide clients with time expired software (prior to payment)
+- to deliver close source applications
+- for use on embedded systems, where disk space is a priority.
+
+WWW: http://pecl.php.net/package/bcompiler/