forked from Lainports/freebsd-ports
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now, we won't have conflicts there. Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel has the correct PKGNAME anyway. Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called OPTIONS_FILE now.) Reviewed by: antoine, bapt Exp-run by: antoine Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D3336
27 lines
709 B
Makefile
27 lines
709 B
Makefile
# Created by: Thierry Thomas (<thierry@pompo.net>)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Log
|
|
PORTVERSION= 1.12.9
|
|
CATEGORIES= sysutils www pear
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PEAR logging utilities
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= pear
|
|
USE_PHP= yes
|
|
|
|
OPTIONS_DEFINE= PEAR_DB PEAR_MDB2 PEAR_MAIL PEAR_SQLITE
|
|
PEAR_DB_DESC= PEAR::DB support
|
|
PEAR_MDB2_DESC= PEAR::MDB2 support
|
|
PEAR_MAIL_DESC= PEAR::Mail support
|
|
PHP_SQLITE_DESC= PHP sqlite support (php5 only)
|
|
|
|
PEAR_DB_BUILD_DEPENDS= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB
|
|
PEAR_MDB2_BUILD_DEPENDS= ${PEARDIR}/MDB2.php:${PORTSDIR}/databases/pear-MDB2
|
|
PEAR_MAIL_BUILD_DEPENDS= ${PEARDIR}/Mail.php:${PORTSDIR}/mail/pear-Mail
|
|
PHP_SQLITE_USE= PHP=sqlite
|
|
|
|
.include <bsd.port.mk>
|