mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
ddae4e92d8
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
32 lines
695 B
Makefile
32 lines
695 B
Makefile
PORTNAME= symphytum
|
|
PORTVERSION= 2.6
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Personal, user-friendly database software
|
|
WWW= https://github.com/giowck/symphytum
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= qmake qt:5
|
|
USE_QT= buildtools:build \
|
|
core gui network printsupport sql svg widgets
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= giowck
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
PORTDOCS= AUTHORS CHANGELOG.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|