Using this new scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and not having to know the hash for a tag. This scheme will download a tarball that has a different checksum than before due to a changed directory name for extraction. The following MASTER_SITES are provided to retain the old checksum and directory structure (that require GH_COMMIT): GH -> GHL GITHUB -> GITHUB_LEGACY Differential Revision: https://reviews.freebsd.org/D748 Submitted by: amdmi3 Reviewed by: mat, swills, antoine, bdrewery With hat: portmgr
27 lines
572 B
Makefile
27 lines
572 B
Makefile
# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qxmpp
|
|
PORTVERSION= 0.8.0
|
|
CATEGORIES= net-im
|
|
MASTER_SITES= GHL
|
|
|
|
MAINTAINER= vg@FreeBSD.org
|
|
COMMENT= QXmpp is an xmpp client library based on Qt & C++
|
|
|
|
LICENSE= LGPL21
|
|
|
|
USES= qmake pathfix pkgconfig libtool
|
|
USE_QT4= gui network qtestlib xml uic_build moc_build \
|
|
rcc_build
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= qxmpp-project
|
|
GH_TAGNAME= v${PORTVERSION}
|
|
GH_COMMIT= cc09061
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e 's|pkgconfig|../libdata/pkgconfig|g' \
|
|
${WRKSRC}/src/src.pro
|
|
|
|
.include <bsd.port.mk>
|