mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c59a3834c4
ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
33 lines
699 B
Makefile
33 lines
699 B
Makefile
# Ports collection makefile for: pear-HTML_Form
|
|
# Date created: 27 October 2004
|
|
# Whom: Antonio Carlos Venancio Junior (<antonio@php.net>)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= HTML_Form
|
|
PORTVERSION= 1.3.0
|
|
CATEGORIES= devel pear
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= PEAR simple HTML form package
|
|
|
|
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
CATEGORY= HTML
|
|
FILES= Form.php
|
|
TESTS= form.phpt
|
|
|
|
post-extract:
|
|
@${MV} ${WRKSRC}/HTML/* ${WRKSRC}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|@include_path@|${PREFIX}/${LPEARDIR}|g" \
|
|
${WRKSRC}/tests/${TESTS}
|
|
|
|
.include <bsd.port.post.mk>
|