50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
Makefile
# Created by: Pedro F. Giffuni <giffunip@asme.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xcircuit
|
|
PORTVERSION= 3.10.29
|
|
PORTEPOCH= 1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= http://opencircuitdesign.com/xcircuit/archive/ \
|
|
http://fossies.org/unix/misc/
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= X11 circuit schematics drawing program
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2
|
|
|
|
USES= ghostscript:x11,run gmake gnome pkgconfig tar:tgz tk:tea xorg
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
USE_XORG= ice sm x11 xpm xscrnsaver xt
|
|
USE_GNOME= cairo
|
|
MAKE_ARGS+= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \
|
|
AUTOMAKE="${TRUE}"
|
|
|
|
DESKTOP_ENTRIES="Xcircuit" "${COMMENT}" "${DATADIR}/pixmaps/${PORTNAME}.gif" \
|
|
"${PORTNAME}" "" false
|
|
|
|
# Restrict to stable (even) versions, indicated by the second component.
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/test/s| == | = |g ; \
|
|
s|TCL_LIB_NAME=.*$$|TCL_LIB_NAME="tcl${TCL_VER:S/.//}"|g ; \
|
|
s|TK_LIB_NAME=.*$$|TK_LIB_NAME="tk${TK_VER:S/.//}"|g ; \
|
|
s|wish |${WISH:T} |g ; \
|
|
s|-fpic|-fPIC|g' ${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/.xcircuitrc ${STAGEDIR}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.lgf ${STAGEDIR}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.lps ${STAGEDIR}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.ps ${STAGEDIR}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.sim ${STAGEDIR}/${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|