63d09c9c9b
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned about for a while. PR: ports/168208 Approved by: portmgr (miwi)
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
# New ports collection makefile for: PCB
|
|
# Date created: 19 October 1994
|
|
# Whom: mr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pcb
|
|
PORTVERSION= 20110918
|
|
PORTREVISION= 1
|
|
CATEGORIES= cad
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= X11 interactive printed circuit board layout system
|
|
|
|
LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd \
|
|
gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext
|
|
RUN_DEPENDS= m4>=1.4.11:${PORTSDIR}/devel/m4 \
|
|
${LOCALBASE}/libdata/pkgconfig/dbus-1.pc:${PORTSDIR}/devel/dbus
|
|
BUILD_DEPENDS:= ${RUN_DEPENDS}
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
USE_GMAKE= yes
|
|
USE_TK_RUN= 83
|
|
INSTALLS_ICONS= yes
|
|
CONFIGURE_ENV+= INSTALL_DATA="/usr/bin/install ${COPY} ${_SHROWNGRP} -m ${SHAREMODE}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= ${PTHREAD_LIBS} -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --docdir=${DOCSDIR} --disable-nls
|
|
PORTDOCS= pcb.html pcb.pdf refcard.pdf pad.png puller.png thermal.png \
|
|
examples tutorial gcode.png gcode_control_img.png \
|
|
gcode_tool_path.png
|
|
|
|
.if defined(WITHOUT_X11)
|
|
CONFIGURE_ARGS+= --without-gui
|
|
CONFIGURE_ENV+= WISH=${TRUE}
|
|
.elif defined(WITH_MOTIF_GUI)
|
|
USE_MOTIF= yes
|
|
USE_TK_RUN= yes
|
|
CONFIGURE_ARGS+= --with-gui=lesstif
|
|
CONFIGURE_ENV+= WISH=${WISH}
|
|
.else
|
|
USE_GNOME= gtk20 desktopfileutils
|
|
USE_TK_RUN= yes
|
|
CONFIGURE_ARGS+= --with-gui=gtk
|
|
CONFIGURE_ENV+= WISH=${WISH}
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INFO= pcb
|
|
MAN1= pcb.1
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-doc
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile on ia64, powerpc, or sparc64
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|