mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
b1a1d38bf9
From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540
28 lines
551 B
Makefile
28 lines
551 B
Makefile
# Created by: Pawel Pekala <pawel@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libmaia
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.9.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= XML-RPC lib for Qt
|
|
|
|
USES= gmake qmake qt:5
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= wiedi
|
|
USE_QT= buildtools_build network xml
|
|
|
|
PLIST_FILES= include/maia/maiaObject.h \
|
|
include/maia/maiaXmlRpcClient.h \
|
|
include/maia/maiaXmlRpcServer.h \
|
|
lib/libmaia.a
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/maiaObject.h \
|
|
${STAGEDIR}${PREFIX}/include/maia
|
|
|
|
.include <bsd.port.mk>
|