diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-03-22 16:22:20 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-03-22 16:22:20 +0000 |
commit | 9b22641538ee0a342e27c4d8f765c0e047d14a68 (patch) | |
tree | 533deeca85385551bcb9cd10e9cb35da5be71110 /math/gretl/Makefile | |
parent | 554ba79d4dfc0d8e5b647a668d48ae9abd8a1b0e (diff) | |
download | ports-9b22641538ee0a342e27c4d8f765c0e047d14a68.tar.gz ports-9b22641538ee0a342e27c4d8f765c0e047d14a68.zip |
Notes
Diffstat (limited to 'math/gretl/Makefile')
-rw-r--r-- | math/gretl/Makefile | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/math/gretl/Makefile b/math/gretl/Makefile new file mode 100644 index 000000000000..ed8fe2f7207a --- /dev/null +++ b/math/gretl/Makefile @@ -0,0 +1,56 @@ +# ex:ts=8 +# Ports collection makefile for: gretl +# Date created: Mar 22, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= gretl +PORTVERSION= 0.991 +CATEGORIES= misc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org + +BUILD_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot +LIB_DEPENDS= gtkextra:${PORTSDIR}/x11-toolkits/gtkextra \ + xml:${PORTSDIR}/textproc/libxml +RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot + +USE_X_PREFIX= yes +USE_GTK= yes +WANT_GNOME= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-gmake +USE_GMAKE= yes +INSTALLS_SHLIB= yes + +MAN1= gretl.1 gretl-config.1 + +.include <bsd.port.pre.mk> + +.if defined(HAVE_GNOME) +USE_GNOME= yes +.else +CONFIGURE_ARGS= --disable-gnome +.endif + +pre-patch: + @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${PERL} -pi -e \ + 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ + s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' + +post-patch: +.for file in gui/gretl.c lib/src/graphing.c + @${PERL} -pi -e "s,SIGCLD,SIGCHLD,g" ${WRKSRC}/${file} +.endfor + @${PERL} -pi -e "s,-ldl,,g" ${WRKSRC}/lib/Makefile.in +.for file in gui/Makefile.in plugin/Makefile.in + @${PERL} -pi -e "s,gtk-config,${GTK_CONFIG},g" ${WRKSRC}/${file} +.endfor + +.include <bsd.port.post.mk> |