freebsd-ports/cad/gwave/Makefile
Martin Wilke 3e4ed01146 - Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
	Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
	ehaupt, nox, itetcu, flz, pav

PR:		116263
Tested on:	pointyhat
Approved by:	portmgr (pav)
2008-04-19 17:56:05 +00:00

67 lines
1.4 KiB
Makefile

# New ports collection makefile for: gwave
# Date created: 16 June 2002
# Whom: Duncan Barclay <dmlb@dmlb.org>
#
# $FreeBSD$
#
PORTNAME= gwave
PORTVERSION= 20060606
PORTREVISION= 2
CATEGORIES= cad
MASTER_SITES= http://geda.seul.org/dist/
MAINTAINER= stas@FreeBSD.org
COMMENT= Waveform viewer for analogue electronic simulation tools
LIB_DEPENDS= guile.18:${PORTSDIR}/lang/guile \
guilegtk-1.2.0:${PORTSDIR}/x11-toolkits/guile-gtk
USE_GNOME= gtk12
GNU_CONFIGURE= yes
USE_GMAKE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
OPTIONS= PLOTUTILS "Use GNU plotutils for plotting" off \
GNUPLOT "Use gnuplot for plotting" on \
EXAMPLES "Install example spice files" off
DOCFILES= Guile.notes \
gwave-concepts.txt \
gwave-hooks.txt \
gwave-procedures.txt \
gwave-variables.txt \
hspice-output.txt \
hspice.txt \
spice3.txt
MAN1= sp2sp.1
.include <bsd.port.pre.mk>
.if defined(WITH_PLOTUTILS)
RUN_DEPENDS+= graph:${PORTSDIR}/graphics/plotutils
.endif
.if !defined(WITHOUT_GNUPLOT)
RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for FILE in ${DOCFILES}
@${INSTALL_DATA} ${WRKSRC}/doc/${FILE} ${DOCSDIR}
.endfor
.endif
.if defined(WITH_EXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
PLIST_SUB+= EXAMPLES=""
.else
PLIST_SUB+= EXAMPLES="@comment "
.endif
.include <bsd.port.post.mk>