freebsd-ports/cad/ngspice_rework/Makefile
William Grzybowski 959ffda594 cad/ngspice_rework: update to 25
- Update to version 25
- Trim Makefile header
- Improve COMMENT
- Add DEBUG option
- Pass maintainership to submitter

PR:		ports/178555
Submitted by:	Kevin Zheng <kevinz5000@gmail.com>
Approved by:	culot / jpaetzel (mentors, implicit), maintainer (timeout)
2013-06-13 15:58:20 +00:00

31 lines
648 B
Makefile

# Created by: AMAKAWA Shuhei <amakawa@jp.FreeBSD.org>
# $FreeBSD$
PORTNAME= ngspice_rework
PORTVERSION= 25
CATEGORIES= cad
MASTER_SITES= SF/ngspice/ng-spice-rework/${PORTVERSION}
DISTNAME= ngspice-${PORTVERSION}
MAINTAINER= kevinz5000@gmail.com
COMMENT= Mixed-signal circuit simulator derived from Spice and Cider
OPTIONS_DEFINE= DEBUG
GNU_CONFIGURE= yes
USE_GMAKE= yes
.include <bsd.port.options.mk>
CONFIGURE_ARGS+=--enable-xspice \
--with-readline=yes
.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+= --enable-debug
.else
CONFIGURE_ARGS+= --disable-debug
.endif
MAN1= ngspice.1 ngnutmeg.1 ngsconvert.1 ngmultidec.1
.include <bsd.port.mk>