1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/x11-toolkits/soqt/Makefile
Christoph Moench-Tegeder c49ee5df72 x11-toolkits/soqt: switch master site
The Bitbucket distribution point is no more, and the main repository
now lives on Github. At the same time, the auto-generated tarballs
over there cannot be used (they lack the submodules required for
building, and upstream documents that over here:
  https://github.com/coin3d/soqt/releases
Just point MASTER_SITES at the correct tarball. On the upside, we
now get the gzipped file (still, the tarball is a little bit larger
as it now contains some mercurial leftovers, but it is the same for
all relevant content - I checked).
While here, add glu to USE_GL as advised by testport.
2022-11-27 17:31:40 +01:00

31 lines
818 B
Makefile

PORTNAME= SoQt
PORTVERSION= 1.6.0
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= x11-toolkits
# cannot USE_GITHUB: submodules required, distfile built by upstream
MASTER_SITES= https://github.com/coin3d/soqt/releases/download/${PORTNAME}-${PORTVERSION}/
DISTNAME= soqt-${PORTVERSION}-src
MAINTAINER= cmt@FreeBSD.org
COMMENT= Qt5-fork of the SoQt toolkit library for Coin
WWW= https://github.com/coin3d/soqt/
LICENSE= BSD3CLAUSE
LIB_DEPENDS= libCoin.so:graphics/Coin
USES= cmake compiler:c++11-lang dos2unix gl libtool \
localbase:ldflags pathfix pkgconfig qmake:no_env qt:5 xorg
USE_QT= buildtools core gui opengl qmake widgets
USE_GL= gl glu
USE_XORG= ice sm x11 xext xi
USE_LDCONFIG= yes
CPPFLAGS+= -I${QT_INCDIR}/QtCore -I${QT_INCDIR}
LDFLAGS+= -L${QT_LIBDIR}
WRKSRC= ${WRKDIR}/soqt
.include <bsd.port.mk>