freebsd-ports/cad/gspiceui/Makefile
Bartek Rutkowski cd351e4375 cad/gspiceui: update 1.0.00 -> 1.1.00
- Remove RUN_DEPENDS on circuit simulators
- Support building with WX 3.0
- Update COMMENT and pkg-descr
- Update LICENSE to GPLv3
- Respect CFLAGS from ports infrastructure

PR:		202232
Submitted by:	Kevin Zheng <kevinz5000@gmail.com> (maintainer)
2015-11-08 10:53:51 +00:00

50 lines
1.3 KiB
Makefile

# Created by: Stanislav Sedov <ssedov@mbsd.msk.ru>
# $FreeBSD$
PORTNAME= gspiceui
PORTVERSION= 1.1.00
CATEGORIES= cad
MASTER_SITES= SF/${PORTNAME}/gSpiceUI/${PORTNAME}-v${PORTVERSION}
DISTNAME= ${PORTNAME}-v${PORTVERSION}
MAINTAINER= kevinz5000@gmail.com
COMMENT= GUI for ngspice and gnucap circuit simulators
LICENSE= GPLv3
OPTIONS_DEFINE= DOCS EXAMPLES
USE_WX= 2.8 3.0
WX_UNICODE= yes
USES= compiler:c++11-lib gmake pkgconfig
CXXFLAGS+= -std=c++11
DESKTOP_ENTRIES= "GSpiceUI" "Circuit Simulator GUI" \
"${PREFIX}/share/pixmaps/gspiceui-48x48.xpm" \
"gspiceui" "Science;Electronics;" false
PORTDOCS= *
PORTEXAMPLES= *
PLIST_FILES= bin/gspiceui share/pixmaps/gspiceui-48x48.xpm \
man/man1/gspiceui.1.gz
post-patch:
@${REINPLACE_CMD} -e 's|share/gspiceui|${DOCSDIR}|g' \
${WRKSRC}/src/main/HelpTasks.cpp
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/gspiceui ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/src/icons/gspiceui-48x48.xpm \
${STAGEDIR}${PREFIX}/share/pixmaps
${INSTALL_MAN} ${WRKSRC}/gspiceui.1 ${STAGEDIR}${MANPREFIX}/man/man1
@${MKDIR} ${STAGEDIR}${DOCSDIR}
@(cd ${WRKSRC} && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} \
"! -name Makefile")
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for dir in lib sch
@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${EXAMPLESDIR} \
"! -name Makefile")
.endfor
.include <bsd.port.mk>