aboutsummaryrefslogtreecommitdiff
path: root/cad/gspiceui/Makefile
blob: a9d461d5e3b53ed582a2e1041f89b4d1ca49246a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# New ports collection makefile for:	gspiceui
# Date created:		30 April 2006
# Whom:			Stanislav Sedov <ssedov@mbsd.msk.ru>
#
# $FreeBSD$
#

PORTNAME=	gspiceui
PORTVERSION=	0.9.65
PORTREVISION=	4
CATEGORIES=	cad
MASTER_SITES=	SF/${PORTNAME}/gSpiceUI/${PORTNAME}-v${PORTVERSION}
DISTNAME=	${PORTNAME}-v${PORTVERSION}

MAINTAINER=	stas@FreeBSD.org
COMMENT=	GUI frontend for gnucap/ng-spice circuit simulators

RUN_DEPENDS=	gwave:${PORTSDIR}/cad/gwave

USE_WX=		2.6+
WX_UNICODE=	yes
USE_GMAKE=	yes

OPTIONS=	NGSPICE "Use ng-spice as backend" on \
		GNUCAP "Use gnucap as backend" off \
		MODELS "Install example models" on

PORTDOCS=	*

.include <bsd.port.pre.mk>

post-patch:
	@${REINPLACE_CMD} -E -e "s,%%WX_CONFIG%%,${WX_CONFIG},g" \
		${WRKSRC}/src/Makefile

.if !defined(WITHOUT_NGSPICE)
RUN_DEPENDS+=	ngspice:${PORTSDIR}/cad/ngspice_rework
.endif

.if defined(WITH_GNUCAP)
RUN_DEPENDS+=	gnucap:${PORTSDIR}/cad/gnucap
.endif

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin

post-install:
.if !defined(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
	@(cd ${WRKSRC}/html && ${COPYTREE_SHARE} \* ${DOCSDIR} \
		"! -name Makefile")
.endif
.if !defined(WITHOUT_MODELS)
	@${MKDIR} ${DATADIR}
	@(cd ${WRKSRC} && ${COPYTREE_SHARE} sch ${DATADIR} \
		"! -name Makefile" && \
		${COPYTREE_SHARE} lib ${DATADIR} "! -name Makefile")
PLIST_SUB+=	MODELS=""
.else
PLIST_SUB+=	MODELS="@comment "
.endif

.include <bsd.port.post.mk>