mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
7da056babf
PR: 143814 Submitted by: Ports Fury
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: surf
|
|
# Date created: Apr 23, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= surf
|
|
PORTVERSION= 1.0.6
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Visualize some real algebraic geometry
|
|
|
|
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \
|
|
tiff.4:${PORTSDIR}/graphics/tiff \
|
|
gmp.8:${PORTSDIR}/math/libgmp4
|
|
|
|
USE_XORG= x11 xmu
|
|
USE_GNOME= gtk12
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --disable-cups --datadir=${PREFIX}/share
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
PORTDOCS= manual.sgml
|
|
PLIST_FILES= bin/${PORTNAME} %%DATADIR%%/${PORTNAME}.xpm
|
|
PLIST_DIRS= %%DATADIR%%
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "Makefile.in" -print0 | ${XARGS} -0 \
|
|
${REINPLACE_CMD} -e \
|
|
's|@CUPS_TRUE@|#|g ; \
|
|
s|@CUPS_FALSE@||g'
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|