mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
99d6d12a38
While here, chase some KDE4 ports and functionality, these are scheduled for removal on 2018-12-31. Change the default option/flavor to QT5 where applicable or use alternative toolkits like GTK. Submitted by: tcberner Reviewed by: adridg, jhale, rene, tcberner Approved by: portmgr (implicit, flavor hook) Differential Revision: https://reviews.freebsd.org/D17741
100 lines
2.8 KiB
Makefile
100 lines
2.8 KiB
Makefile
# Created by: David Yeske <dyeske@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= leocad
|
|
PORTVERSION= 0.80.3
|
|
PORTREVISION= 5
|
|
CATEGORIES= cad
|
|
MASTER_SITES= SF/nemysisfreebsdp/${CATEGORIES}/${PORTNAME}/
|
|
DISTFILES= LeoCAD-Source-${PORTVERSION}.tgz
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
EXTRACT_ONLY= LeoCAD-Source-${PORTVERSION}.tgz
|
|
|
|
MAINTAINER= koalative@gmail.com
|
|
COMMENT= CAD program that uses bricks similar to those found in many toys
|
|
|
|
LICENSE= GPLv2
|
|
|
|
DEPRECATED= Qt4 has been EOL since december 2015
|
|
EXPIRATION_DATE= 2019-03-15
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USES= desktop-file-utils gmake jpeg pkgconfig qmake qt:4 shared-mime-info
|
|
USE_QT= moc_build rcc_build uic_build iconengines_run imageformats_run \
|
|
corelib gui network opengl
|
|
USE_GL= glut
|
|
USE_GNOME= gtk20
|
|
|
|
CXXFLAGS+= -include ${WRKSRC}/common/lc_global.h
|
|
|
|
PORTDOCS= CREDITS.txt README.txt
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
OPTIONS_SINGLE= LIBRARY
|
|
OPTIONS_SINGLE_LIBRARY= LDRAW LEOCAD
|
|
OPTIONS_DEFAULT= LEOCAD
|
|
|
|
LDRAW_DESC= Library from LDraw symlink, mostly fewer pieces
|
|
LEOCAD_DESC= Library from LeoCad file, mostly more pieces
|
|
|
|
INSTALLS_ICONS= yes
|
|
ICON_SIZES= 16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MLDRAW}
|
|
RUN_DEPENDS= ${LOCALBASE}/share/ldraw/models/car.dat:cad/ldraw
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLEOCAD}
|
|
LEOCAD_PIECES= Library-Linux-7931.zip
|
|
DISTFILES+= ${LEOCAD_PIECES}
|
|
EXTRACT_DEPENDS=${UNZIP_CMD}:archivers/unzip
|
|
post-extract:
|
|
@${UNZIP_CMD} -q -o ${_DISTDIR}/${LEOCAD_PIECES} -d ${WRKDIR}/pieces
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr|${PREFIX}|; \
|
|
s|share/man/man1|man/man1|; \
|
|
s|docs.files = docs/README.txt docs/CREDITS.txt docs/COPYING.txt|docs.files = |' \
|
|
${WRKSRC}/${PORTNAME}.pro
|
|
|
|
.for s in 16 24 32 48 64 128 256 512
|
|
@cd ${WRKSRC}/tools/icon && \
|
|
${MV} ${PORTNAME}-${s}.png ${PORTNAME}_${s}x${s}.png
|
|
.endfor
|
|
@cd ${WRKSRC}/tools/icon && ${CP} -a ${PORTNAME}_128x128.png icon128.png
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
|
|
.if ${PORT_OPTIONS:MLDRAW}
|
|
${LN} -s ${PREFIX}/share/ldraw ${STAGEDIR}${DATADIR}/library.bin
|
|
.endif
|
|
.if ${PORT_OPTIONS:MLEOCAD}
|
|
${INSTALL_DATA} ${WRKDIR}/pieces/* ${STAGEDIR}${DATADIR}
|
|
.endif
|
|
|
|
.for s in ${ICON_SIZES}
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps
|
|
${INSTALL_DATA} ${WRKSRC}/tools/icon/${PORTNAME}_${s}.png \
|
|
${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps
|
|
.for i in document*.png icon*.png
|
|
@cd ${WRKSRC}/tools/icon && ${INSTALL_DATA} ${i} \
|
|
${STAGEDIR}${DATADIR}
|
|
.endfor
|
|
@${LN} -sf ../icons/hicolor/48x48/apps/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
${INSTALL_MAN} ${WRKSRC}/docs/leocad.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|