diff options
author | Steve Wills <swills@FreeBSD.org> | 2014-11-04 02:02:03 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2014-11-04 02:02:03 +0000 |
commit | 9b082dd77608ec03cb06dacb56978edafabe4b71 (patch) | |
tree | f65e2996bd1047dccb67dee29fb014025d27726f /net/syncthing-cli/Makefile | |
parent | f26d247343ffb96b30800755bf9456bdd8ddceb5 (diff) | |
download | ports-9b082dd77608ec03cb06dacb56978edafabe4b71.tar.gz ports-9b082dd77608ec03cb06dacb56978edafabe4b71.zip |
Notes
Diffstat (limited to 'net/syncthing-cli/Makefile')
-rw-r--r-- | net/syncthing-cli/Makefile | 61 |
1 files changed, 28 insertions, 33 deletions
diff --git a/net/syncthing-cli/Makefile b/net/syncthing-cli/Makefile index 19576ab0ec4b..c7e9a6390661 100644 --- a/net/syncthing-cli/Makefile +++ b/net/syncthing-cli/Makefile @@ -2,22 +2,14 @@ # $FreeBSD$ PORTNAME= syncthing-cli -PORTVERSION= 0.0.0.2014081401 +PORTVERSION= 0.1.0.2014110101 CATEGORIES= net MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/archive/${GH_TAGNAME}.tar.gz?dummy=/:group1 \ - https://codeload.github.com/AudriusButkevicius/cli/legacy.tar.gz/7f561c7?dummy=/:group2 \ - https://github.com/syncthing/syncthing/archive/v0.9.4.tar.gz?dummy=/:group3 \ - LOCAL/swills:group4 \ - LOCAL/swills:group5 \ - https://codeload.github.com/bkaradzic/go-lz4/legacy.tar.gz/77e2ba8?dummy=/:group6 \ - https://codeload.github.com/calmh/xdr/legacy.tar.gz/e1714bb?dummy=/:group7 -DISTFILES= syncthing-cli-0.0.0.2014081401.tar.gz:group1 \ - AudriusButkevicius-cli-7f561c7${EXTACT_SUFX}:group2 \ - syncthing-0.9.4${EXTRACT_SUFX}:group3 \ - crypto.go-f3cebac2bd11${EXTRACT_SUFX}:group4 \ - text.go-d65bffbc88a1${EXTRACT_SUFX}:group5 \ - bkaradzic-go-lz4-77e2ba8${EXTRACT_SUFX}:group6 \ - calmh-xdr-e1714bb${EXTRACT_SUFX}:group7 + https://github.com/syncthing/syncthing/archive/v${SYNCTHING_VER}.tar.gz?dummy=/:group2 \ + https://codeload.github.com/AudriusButkevicius/cli/legacy.tar.gz/7f561c7?dummy=/:group3 +DISTFILES= syncthing-cli-${PORTVERSION}${EXTRACT_SUFX}:group1 \ + syncthing-${SYNCTHING_VER}${EXTRACT_SUFX}:group2 \ + AudriusButkevicius-cli-7f561c7${EXTACT_SUFX}:group3 MAINTAINER= swills@FreeBSD.org COMMENT= Syncthing CLI @@ -26,33 +18,36 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/go:${PORTSDIR}/lang/go GH_ACCOUNT= syncthing GH_PROJECT= syncthing-cli -GH_COMMIT= 7dab84f +GH_COMMIT= c87be74a305ef6b3f05debde4df84c27e9005035 GH_TAGNAME= ${GH_COMMIT} -WRKSRC= ${WRKDIR}/${PORTNAME}-7dab84f6edfbd873c5addac1c564fa1f64d0ff29 +SYNCTHING_VER= 0.10.4 + +WRKSRC= ${WRKDIR}/syncthing-cli-${GH_COMMIT} PLIST_FILES= bin/syncthing-cli post-patch: - cd ${WRKSRC} ; \ - ${MKDIR} src/github.com/AudriusButkevicius ; \ - ${MKDIR} src/github.com/syncthing/syncthing ; \ - ${MKDIR} src/github.com/bkaradzic ; \ - ${MKDIR} src/github.com/calmh ; \ - ${MKDIR} src/code.google.com/p ; \ - ${MV} ${WRKDIR}/AudriusButkevicius-cli-7f561c7 src/github.com/AudriusButkevicius/cli ; \ - ${MV} ${WRKDIR}/syncthing-0.9.4/config src/github.com/syncthing/syncthing/config ; \ - ${MV} ${WRKDIR}/syncthing-0.9.4/protocol src/github.com/syncthing/syncthing/protocol ; \ - ${MV} ${WRKDIR}/crypto.go-f3cebac2bd11 src/code.google.com/p/go.crypto ; \ - ${MV} ${WRKDIR}/text.go-d65bffbc88a1/ src/code.google.com/p/go.text ; \ - ${MV} ${WRKDIR}/bkaradzic-go-lz4-77e2ba8 src/github.com/bkaradzic/go-lz4 ; \ - ${MV} ${WRKDIR}/syncthing-0.9.4/logger src/github.com/syncthing/syncthing ; \ - ${MV} ${WRKDIR}/syncthing-0.9.4/luhn src/github.com/syncthing/syncthing ; \ - ${MV} ${WRKDIR}/calmh-xdr-e1714bb src/github.com/calmh/xdr + @${MKDIR} ${WRKSRC}/src/github.com/syncthing + @${MKDIR} ${WRKSRC}/src/github.com/AudriusButkevicius + @${MKDIR} ${WRKSRC}/src/code.google.com/p + @${MKDIR} ${WRKSRC}/src/github.com/bkaradzic + @${MV} ${WRKDIR}/AudriusButkevicius-cli-7f561c7 \ + ${WRKSRC}/src/github.com/AudriusButkevicius/cli + @${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/code.google.com/p/go.crypto \ + ${WRKSRC}/src/code.google.com/p + @${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/code.google.com/p/go.text \ + ${WRKSRC}/src/code.google.com/p + @${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/github.com/bkaradzic/go-lz4 \ + ${WRKSRC}/src/github.com/bkaradzic + @${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER}/Godeps/_workspace/src/github.com/calmh \ + ${WRKSRC}/src/github.com/calmh + @${MV} ${WRKDIR}/syncthing-${SYNCTHING_VER} \ + ${WRKSRC}/src/github.com/syncthing/syncthing do-build: - cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build - ${MV} ${WRKSRC}/syncthing-cli-7dab84f6edfbd873c5addac1c564fa1f64d0ff29 ${WRKSRC}/syncthing-cli + @cd ${WRKSRC} ; ${SETENV} GOPATH=${WRKSRC} go build + @${MV} ${WRKSRC}/syncthing-cli-${GH_COMMIT} ${WRKSRC}/syncthing-cli do-install: ${INSTALL_PROGRAM} ${WRKSRC}/syncthing-cli ${STAGEDIR}${PREFIX}/bin/ |