diff options
Diffstat (limited to 'math/scigraphica/Makefile')
-rw-r--r-- | math/scigraphica/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/math/scigraphica/Makefile b/math/scigraphica/Makefile new file mode 100644 index 000000000000..e50aea6f6117 --- /dev/null +++ b/math/scigraphica/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: scigraphica +# Date created: 29 August 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= scigraphica +PORTVERSION= 0.4 +CATEGORIES= math gnome +MASTER_SITES= http://magnet.fsu.edu/~feiguin/scigraphica/src/ +DISTNAME= sg-${PORTVERSION} + +MAINTAINER= sobomax@FreeBSD.org + +BUILD_DEPENDS= python:${PORTSDIR}/lang/python +LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ + gtkextra.10:${PORTSDIR}/x11-toolkits/gtkextra \ + xml.5:${PORTSDIR}/textproc/libxml +RUN_DEPENDS= panel:${PORTSDIR}/x11/gnomecore \ + python:${PORTSDIR}/lang/python + +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_LIBTOOL= yes + +CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \ + --datadir=${PREFIX}/share/gnome +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LDFLAGS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|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' + +.include <bsd.port.mk> |