mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 16:20:33 -04:00
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
29 lines
664 B
Makefile
29 lines
664 B
Makefile
# Created by: Naram Qashat <cyberbotx@cyberbotx.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pHash
|
|
PORTVERSION= 0.9.6
|
|
PORTREVISION= 5
|
|
CATEGORIES= multimedia devel
|
|
MASTER_SITES= http://phash.org/releases/ \
|
|
http://www.cyberbotx.com/pHash/
|
|
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= cyberbotx@cyberbotx.com
|
|
COMMENT= PHP extension for the pHash perceptual hash library
|
|
|
|
LICENSE= PHP30
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libpHash.so:multimedia/pHash
|
|
|
|
USES= php:ext
|
|
|
|
WRKSRC_SUBDIR= bindings/php
|
|
|
|
# The tarball contains stale pre-built files that interfere with building this
|
|
# ourselves.
|
|
post-configure:
|
|
@(cd ${WRKSRC} && ${MAKE_CMD} clean)
|
|
|
|
.include <bsd.port.mk>
|