View | Details | Raw Unified | Return to bug 231508
Collapse All | Expand All

(-)security/onionscan/Makefile (+40 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	onionscan
4
DISTVERSIONPREFIX=	OnionScan-
5
DISTVERSION=	0.2
6
CATEGORIES=	security net
7
8
MAINTAINER=	egypcio@googlemail.com
9
COMMENT=	Free and open source tool for investigating Onion Services
10
11
LICENSE=	MIT
12
LICENSE_FILE=	${WRKSRC}/LICENSE
13
14
BUILD_DEPENDS=	go:lang/go
15
16
USES=		go
17
USE_GITHUB=	yes
18
19
GH_ACCOUNT=	s-rah
20
GH_TUPLE=	HouzuoGuo:tiedot:3.4:tiedot/github.com/HouzuoGuo/tiedot \
21
		rwcarlsen:goexif:8d986c0:goexif/github.com/rwcarlsen/goexif \
22
		golang:crypto:0e37d00:crypto/golang.org/x/crypto \
23
		golang:net:26e67e7:net/golang.org/x/net \
24
		golang:sys:1561086:sys/golang.org/x/sys
25
26
PLIST_FILES=	bin/onionscan
27
28
do-build:
29
	${MKDIR} ${WRKSRC}/github.com/${GH_ACCOUNT}
30
	${RLN} ${WRKSRC} ${WRKSRC}/github.com/${GH_ACCOUNT}/${PORTNAME}
31
	${RLN} ${WRKSRC} ${WRKSRC}/src
32
	cd ${WRKSRC} && \
33
	  ${SETENV} ${MAKE_ENV} ${GO_ENV} GOPATH=${WRKSRC} \
34
	  ${GO_CMD} build ${GO_BUILDFLAGS} -o bin/${PORTNAME}
35
36
do-install:
37
	${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} \
38
		${STAGEDIR}/${LOCALBASE}/bin
39
40
.include <bsd.port.mk>
(-)security/onionscan/distinfo (+13 lines)
Line 0 Link Here
1
TIMESTAMP = 1537440910
2
SHA256 (s-rah-onionscan-OnionScan-0.2_GH0.tar.gz) = d1e5fe51d26121f3afee6f11c54c08d43ed0d5686cb8b542dc72dd5662dbe988
3
SIZE (s-rah-onionscan-OnionScan-0.2_GH0.tar.gz) = 658286
4
SHA256 (HouzuoGuo-tiedot-3.4_GH0.tar.gz) = 696464b84599a686066ea89996a5a0e878cf2e2f022ea33178338e90906dabfc
5
SIZE (HouzuoGuo-tiedot-3.4_GH0.tar.gz) = 608687
6
SHA256 (rwcarlsen-goexif-8d986c0_GH0.tar.gz) = 66c62f7c6db4592d4c1bbec7115204c1183cde7df4dc50814b04c78bc7260a57
7
SIZE (rwcarlsen-goexif-8d986c0_GH0.tar.gz) = 938951
8
SHA256 (golang-crypto-0e37d00_GH0.tar.gz) = 05e1f307f06b14787c1abe8d463a164521b70c831992ff82ae552541d2c421c6
9
SIZE (golang-crypto-0e37d00_GH0.tar.gz) = 1638254
10
SHA256 (golang-net-26e67e7_GH0.tar.gz) = 98513e53dac73819278595dfe277a01201978a937a24f4edd94c128bb443f7c5
11
SIZE (golang-net-26e67e7_GH0.tar.gz) = 965343
12
SHA256 (golang-sys-1561086_GH0.tar.gz) = 45fe1f41709a752e36bb73fded99081ad19ef840c2ea29cfe0bb9718eaa49929
13
SIZE (golang-sys-1561086_GH0.tar.gz) = 1076893
(-)security/onionscan/pkg-descr (+9 lines)
Line 0 Link Here
1
OnionScan is a free and open source tool for investigating Onion Services 
2
on the Tor network.
3
4
It has two primary goals:
5
6
	* Help to find and to fix operational privacy/security issues;
7
	* Support researchers and investigators to monitor .onion sites.
8
9
WWW: https://onionscan.org/

Return to bug 231508