mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
58723eac88
Tested by: Johan van Selst <johans@stack.nl> (amd64), barner (sparc64, ia64) Submitted by: Johan van Selst <johans@stack.nl> PR: ports/86081
46 lines
990 B
Makefile
46 lines
990 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: yap
|
|
# Date created: Apr 29, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= yap
|
|
PORTVERSION= 5.0.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://www.ncc.up.pt/~vsc/Yap/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR= Yap-${PORTVERSION:R}
|
|
DISTNAME= Yap-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A high-performance Prolog compiler
|
|
|
|
LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4
|
|
|
|
USE_REINPLACE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
INFO= yap
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-extract:
|
|
@${RM} -f ${WRKSRC}/docs/*.info*
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|@value{VERSION}|${PORTVERSION}|g' ${WRKSRC}/docs/yap.tex
|
|
|
|
post-build:
|
|
cd ${WRKSRC}/docs && makeinfo --no-split yap.tex
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/${INFO_PATH}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/yap.info ${PREFIX}/${INFO_PATH}
|
|
|
|
.include <bsd.port.post.mk>
|