mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
da3162c7c9
Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
33 lines
653 B
Makefile
33 lines
653 B
Makefile
# Created by: David Johnson <david@usermode.org>
|
|
|
|
PORTNAME= qbrew
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.usermode.org/code/
|
|
|
|
MAINTAINER= adridg@FreeBSD.org
|
|
COMMENT= Homebrewer's recipe calculator
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= compiler:c++11-lang gl qmake qt:5
|
|
USE_GL= gl
|
|
USE_QT= buildtools_build qmake_build \
|
|
core gui printsupport widgets xml
|
|
|
|
QMAKE_ARGS= CONFIG+="configure"
|
|
QMAKE_ENV+= BINDIR="${PREFIX}/bin" \
|
|
DATADIR="${DATADIR}" \
|
|
DOCDIR="${DOCSDIR}"
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PORTDOCS= *
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qbrew
|
|
|
|
.include <bsd.port.mk>
|