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

(-)./Makefile (-3 / +5 lines)
Lines 2-9 Link Here
2
# $FreeBSD: ports/net/scribe/Makefile,v 1.15 2013/01/31 14:01:30 svnexp Exp $
2
# $FreeBSD: ports/net/scribe/Makefile,v 1.15 2013/01/31 14:01:30 svnexp Exp $
3
3
4
PORTNAME=	scribe
4
PORTNAME=	scribe
5
DISTVERSION=	2.2.2012.01.07
5
DISTVERSION=	2.2.2013.04.15
6
PORTREVISION=	2
7
CATEGORIES=	net
6
CATEGORIES=	net
8
MASTER_SITES=	https://github.com/facebook/scribe/tarball/${GITVERSION}/
7
MASTER_SITES=	https://github.com/facebook/scribe/tarball/${GITVERSION}/
9
DISTNAME=	facebook-scribe-${GITVERSION}
8
DISTNAME=	facebook-scribe-${GITVERSION}
Lines 19-25 Link Here
19
		p5-Thrift>0:${PORTSDIR}/devel/p5-Thrift \
18
		p5-Thrift>0:${PORTSDIR}/devel/p5-Thrift \
20
		${PYTHON_SITELIBDIR}/thrift/__init__.py:${PORTSDIR}/devel/py-thrift
19
		${PYTHON_SITELIBDIR}/thrift/__init__.py:${PORTSDIR}/devel/py-thrift
21
20
22
GITVERSION=	63e4824
21
GITVERSION=	7359a09
23
FETCH_ARGS=	-pRr
22
FETCH_ARGS=	-pRr
24
WRKSRC=		${WRKDIR}/${DISTNAME}
23
WRKSRC=		${WRKDIR}/${DISTNAME}
25
24
Lines 35-40 Link Here
35
USE_PYTHON=	yes
34
USE_PYTHON=	yes
36
USE_RC_SUBR=	${PORTNAME}
35
USE_RC_SUBR=	${PORTNAME}
37
36
37
post-patch:
38
	${REINPLACE_CMD} -e 's/^AM_INIT_AUTOMAKE/#/' ${WRKSRC}/configure.ac
39
38
post-build:
40
post-build:
39
	${LOCALBASE}/bin/thrift -o ${WRKSRC} -I ${LOCALBASE}/share --gen "perl" ${WRKSRC}/if/scribe.thrift
41
	${LOCALBASE}/bin/thrift -o ${WRKSRC} -I ${LOCALBASE}/share --gen "perl" ${WRKSRC}/if/scribe.thrift
40
42
(-)./distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (facebook-scribe-63e4824.tar.gz) = e4fd56649e35b8ff508d8f915cd29bd15b888c301043a7d930acf83b9ee5aa2f
1
SHA256 (facebook-scribe-7359a09.tar.gz) = c40168c9a77f0d95242a1142f050d6d84a5a202ce2883e0dbb93af8a7a3a9204
2
SIZE (facebook-scribe-63e4824.tar.gz) = 97107
2
SIZE (facebook-scribe-7359a09.tar.gz) = 97261
(-)./files/patch-src-file.cpp (-11 lines)
Lines 1-11 Link Here
1
--- src/file.cpp.orig	2012-06-28 12:42:20.000000000 +0800
2
+++ src/file.cpp	2012-06-28 12:42:30.000000000 +0800
3
@@ -245,7 +245,7 @@
4
       boost::filesystem::directory_iterator dir_iter(path), end_iter;
5
 
6
       for ( ; dir_iter != end_iter; ++dir_iter) {
7
-        _return.push_back(dir_iter->filename());
8
+        _return.push_back(dir_iter->path().filename().string());
9
       }
10
     }
11
   } catch (const std::exception& e) {
(-)./pkg-descr (-1 / +1 lines)
Lines 3-6 Link Here
3
extensible without client-side modification, and robust to failure of
3
extensible without client-side modification, and robust to failure of
4
the network or any specific machine.
4
the network or any specific machine.
5
5
6
WWW:	http://github.com/facebook/scribe
6
WWW: http://github.com/facebook/scribe

Return to bug 181609