1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

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@
This commit is contained in:
Martin Wilke 2006-11-07 17:48:40 +00:00
parent 65f5ec2784
commit 8658592067
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=176732
4 changed files with 40 additions and 0 deletions

View File

@ -1591,6 +1591,7 @@
SUBDIR += pear-XML_Util
SUBDIR += pear-XML_XPath
SUBDIR += pear-apd
SUBDIR += pecl-bcompiler
SUBDIR += pecl-expect
SUBDIR += pecl-json
SUBDIR += pecl-operator

View File

@ -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>

View File

@ -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

View File

@ -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/