mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
33 lines
769 B
Makefile
33 lines
769 B
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMESUFFIX= -hiphop
|
|
|
|
MAINTAINER= mm@FreeBSD.org
|
|
COMMENT= Static libcurl with custom patches for HipHop
|
|
|
|
SSP_UNSAFE= Refuses -l in LDFLAGS
|
|
|
|
BUILDING_HIPHOP= yes
|
|
|
|
HIPHOP_DIR= share/hiphop-php
|
|
EXTRA_PATCHES= ${.CURDIR}/files/extra-patch-hiphop
|
|
GNU_CONFIGURE_PREFIX= ${PREFIX}/${HIPHOP_DIR}/ext
|
|
CONFIGURE_ARGS+= --disable-shared --enable-static
|
|
PLIST_SUB+= HIPHOP_DIR="${HIPHOP_DIR}"
|
|
LATEST_LINK= curl-hiphop
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
DESCR= ${.CURDIR}/pkg-descr
|
|
|
|
MASTERDIR= ${.CURDIR}/../curl
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
.for dir in include lib
|
|
@cd ${WRKSRC}/${dir} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \
|
|
${MAKE_ARGS} ${INSTALL_TARGET}
|
|
.endfor
|
|
|
|
.include "${MASTERDIR}/Makefile"
|