Change x11/xorgproto to become a build time dependency when added to USE_XORG. Change the dependency to be on the port, rather than a file the port installs. Fix fallout. Bump portrevision on depending ports. PR: 230909 Reviewed by: eadler Approved by: portmgr (antoine) Obtained from: https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto exp-run: antoine Differential Revision: https://reviews.freebsd.org/D16906
30 lines
663 B
Makefile
30 lines
663 B
Makefile
# Created by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xppaut
|
|
PORTVERSION= 7.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= math graphics
|
|
MASTER_SITES= http://www.math.pitt.edu/~bard/bardware/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= stephen@FreeBSD.org
|
|
COMMENT= Graphical tool for solving differential equations, etc
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_XORG= x11 xbitmaps xorgproto
|
|
CFLAGS+= -w -Wno-return-type
|
|
WRKSRC= ${WRKDIR}
|
|
ALL_TARGET= xppaut
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
DOCS_MAKE_ENV_OFF= NOPORTDOCS=yes
|
|
EXAMPLES_MAKE_ENV_OFF= NOPORTEXAMPLES=yes
|
|
|
|
post-build:
|
|
${RM} ${WRKSRC}/ode/._*
|
|
|
|
.include <bsd.port.mk>
|