forked from Lainports/freebsd-ports
- Update PyQt to 5.15.0, py-sip to 4.19.24 and qscintilla2 to 2.11.5 - Use pypi for PYQT [1] - Add devel/py-qt5-sip (Don't use it for now. It will be used in future updates of PyQt with py-sip >= 5) - Add missing py-qt5 ports: comms/py-qt5-sensors, devel/py-qt5-location, devel/py-qt5-remoteobjects, net/py-qt5-networkauth - Strip libs - Refactor *_PATH and *_PORT parts [1] RiverBankComputing doesn't offer links to download latest version of some ports PR: 247369 Reviewed by: tcberner Differential Revision: https://reviews.freebsd.org/D25749 Exp-run by: antoine
34 lines
1,000 B
Makefile
34 lines
1,000 B
Makefile
# Created by: loïc bartoletti <lbartoletti@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sqlitebrowser
|
|
PORTVERSION= 3.12.0
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= lbartoletti@FreeBSD.org
|
|
COMMENT= Visual tool to manage SQLite databases
|
|
|
|
LICENSE= MPL20 GPLv3
|
|
LICENSE_COMB= dual
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libantlr.a:devel/antlr
|
|
LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5
|
|
|
|
USES= compiler:c++11-lang cmake desktop-file-utils gnome qt:5 sqlite
|
|
CMAKE_ARGS+= -DQT_INCLUDE_DIR=${QT_INCDIR} -DQT_LIBRARY_DIR=${QT_LIBDIR}
|
|
USE_QT= core concurrent gui network printsupport testlib widgets \
|
|
buildtools_build linguisttools_build qmake_build xml
|
|
USE_GITHUB= yes
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \
|
|
${WRKSRC}/src/PreferencesDialog.cpp ${WRKSRC}/src/Application.cpp
|
|
@${REINPLACE_CMD} -e 's|metainfo|appdata|' \
|
|
${WRKSRC}/src/src.pro ${WRKSRC}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|