2a83187998
compatibility - remove what looks like a leftover debug echo to fix BETTER_COMPRESSION option [1] PR: ports/170988 [1] Reported by: Andrea Venturoli <ml@netfence.it> [1] Feature safe: yes
30 lines
614 B
Makefile
30 lines
614 B
Makefile
# Created by: chinsan <chinsan.tw@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lzf
|
|
PORTVERSION= 1.6.2
|
|
CATEGORIES= archivers pear
|
|
MASTER_SITES= http://pecl.php.net/get/
|
|
PKGNAMEPREFIX= pecl-
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= PECL
|
|
|
|
MAINTAINER= miwi@FreeBSD.org
|
|
COMMENT= Handles LZF de/compression
|
|
|
|
USE_PHP= yes
|
|
USE_PHPEXT= yes
|
|
|
|
CONFIGURE_ARGS= --enable-lzf
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:U}
|
|
|
|
OPTIONS_DEFINE= BETTER_COMPRESSION
|
|
BETTER_COMPRESSION_DESC= Better compression ratio
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MBETTER_COMPRESSION}
|
|
CONFIGURE_ARGS+= --enable-lzf-better-compression
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|