mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
7ad012e1d9
compilation on FreeBSD 4 with GCC 2.95.4: http://bento.freebsd.org/errorlogs/i386-4-latest/xgfe-2.1.log The patch below fixes this. During testing it on FreeBSD 4 and 5 with QT 3.3.1 I noticed that the Advanced -> Multiple Files and Advanced -> Multiple Functions dialogs were broken. I'm not sure if this is a new breakage with QT 3.3.1 or if I didn't notice these when testing the previous patch on FreeBSD 5 with QT 3.2.1. Anyway, these are also fixed and as a precaution PORTREVISION is bumped. The patch also adds SIZE info. PR: 64390 Submitted by: Marius Strobl <marius@alchemy.franken.de> Approved by: maintainer
35 lines
747 B
Makefile
35 lines
747 B
Makefile
# New ports collection makefile for: xgfe
|
|
# Date created: 24 March 1998
|
|
# Whom: Matthew Hunt <mph@pobox.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xgfe
|
|
PORTVERSION= 2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_TEX_CTAN}
|
|
MASTER_SITE_SUBDIR= graphics/gnuplot/contrib
|
|
|
|
MAINTAINER= mph@freebsd.org
|
|
COMMENT= An X11 front-end for Gnuplot
|
|
|
|
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
|
|
|
|
USE_QT_VER= 3
|
|
USE_X_PREFIX= yes
|
|
|
|
MAKE_ENV+= DOCSDIR=$(DOCSDIR) PTHREAD_CFLAGS="$(PTHREAD_CFLAGS)" \
|
|
PTHREAD_LIBS="$(PTHREAD_LIBS)"
|
|
.if defined(NOPORTDOCS)
|
|
MAKE_ENV+= NOPORTDOCS=$(NOPORTDOCS)
|
|
.endif
|
|
|
|
WRKSRC= $(WRKDIR)/$(DISTNAME)/source
|
|
|
|
post-extract:
|
|
@cd $(WRKSRC) && ${LN} -sf Makefile.freebsd-gcc Makefile
|
|
|
|
.include <bsd.port.mk>
|