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

(-)Makefile (-1 / +4 lines)
Lines 6-11 Link Here
6
CATEGORIES=	biology
6
CATEGORIES=	biology
7
MASTER_SITES=	http://www.bcgsc.ca/platform/bioinfo/software/${PORTNAME}/releases/${DISTVERSION}/
7
MASTER_SITES=	http://www.bcgsc.ca/platform/bioinfo/software/${PORTNAME}/releases/${DISTVERSION}/
8
8
9
PATCH_SITES=	https://github.com/bcgsc/${PORTNAME}/commit/
10
PATCHFILES=	25eb9d2a914fb211fdfe04fcda5593f29fd23ff5.patch:-p1 \
11
9
MAINTAINER=	yuri@FreeBSD.org
12
MAINTAINER=	yuri@FreeBSD.org
10
COMMENT=	Assembly By Short Sequences: parallel, paired-end sequence assembler
13
COMMENT=	Assembly By Short Sequences: parallel, paired-end sequence assembler
11
14
Lines 21-27 Link Here
21
RUN_DEPENDS=	bash:shells/bash \
24
RUN_DEPENDS=	bash:shells/bash \
22
		gmake:devel/gmake
25
		gmake:devel/gmake
23
26
24
USES=		gmake iconv:wchar_t localbase:ldflags shebangfix sqlite
27
USES=		compiler:c++11-lang gmake iconv:wchar_t localbase:ldflags shebangfix sqlite
25
SHEBANG_FILES=	bin/${PORTNAME}-*
28
SHEBANG_FILES=	bin/${PORTNAME}-*
26
SHEBANG_LANG=	make
29
SHEBANG_LANG=	make
27
make_OLD_CMD=	/usr/bin/make
30
make_OLD_CMD=	/usr/bin/make
(-)distinfo (-1 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1551061546
1
TIMESTAMP = 1561103807
2
SHA256 (abyss-2.1.5.tar.gz) = 65bfc8241e6ff5adf7601ae4ae93a75e3db86d6bff5d593c75aaff7f0ef41757
2
SHA256 (abyss-2.1.5.tar.gz) = 65bfc8241e6ff5adf7601ae4ae93a75e3db86d6bff5d593c75aaff7f0ef41757
3
SIZE (abyss-2.1.5.tar.gz) = 1201318
3
SIZE (abyss-2.1.5.tar.gz) = 1201318
4
SHA256 (25eb9d2a914fb211fdfe04fcda5593f29fd23ff5.patch) = 93ad66c42610c4fba8cfbe256a2ab689bf4a76974c3b97a9e1094863614ad934
5
SIZE (25eb9d2a914fb211fdfe04fcda5593f29fd23ff5.patch) = 1701
(-)files/patch-Common_city.cc (+13 lines)
Line 0 Link Here
1
--- Common/city.cc.orig	2018-09-21 23:44:14 UTC
2
+++ Common/city.cc
3
@@ -65,6 +65,10 @@ static uint32 UNALIGNED_LOAD32(const char *p) {
4
 #define bswap_32(x) OSSwapInt32(x)
5
 #define bswap_64(x) OSSwapInt64(x)
6
 
7
+#elif defined(__FreeBSD__)
8
+#include <sys/endian.h>
9
+#define bswap_32(x) bswap32(x)
10
+#define bswap_64(x) bswap64(x)
11
 #else
12
 #include <byteswap.h>
13
 #endif

Return to bug 238737