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

(-)devel/capstone/Makefile (-4 / +3 lines)
Lines 1-7 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	capstone
3
PORTNAME=	capstone
4
PORTVERSION=	2.1.2
4
PORTVERSION=	3.0.4
5
CATEGORIES=	devel
5
CATEGORIES=	devel
6
6
7
MAINTAINER=	oliver.pntr@gmail.com
7
MAINTAINER=	oliver.pntr@gmail.com
Lines 17-24 Link Here
17
MAKE_ENV+=	INSTALL_LIB="${INSTALL_LIB}" \
17
MAKE_ENV+=	INSTALL_LIB="${INSTALL_LIB}" \
18
		INSTALL_DATA="${INSTALL_DATA}"
18
		INSTALL_DATA="${INSTALL_DATA}"
19
19
20
post-build:
20
TEST_ENV=	${MAKE_ENV} LD_LIBRARY_PATH=${STAGEDIR}${PREFIX}/lib
21
	# The pkgconfig file is generated and points to stagedir
21
TEST_TARGET=	check
22
	${REINPLACE_CMD} -e '/libdir/s|\(libdir=\)\(.*\)\(devel/capstone/work/stage\)|\1|g' ${WRKSRC}/capstone.pc
23
22
24
.include <bsd.port.mk>
23
.include <bsd.port.mk>
(-)devel/capstone/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (aquynh-capstone-2.1.2_GH0.tar.gz) = 5312ba5fc09fe193f7fc2fd6cbbc34b6ea7a7b002c0fd7acb2b38ee6c492fb9c
1
SHA256 (aquynh-capstone-3.0.4_GH0.tar.gz) = 5d6dadf5864c56f8de66c66088fa68e849d0bff6577865a4f81b6f23112b14f2
2
SIZE (aquynh-capstone-2.1.2_GH0.tar.gz) = 1366145
2
SIZE (aquynh-capstone-3.0.4_GH0.tar.gz) = 2800818
(-)devel/capstone/pkg-plist (-1 / +5 lines)
Lines 2-10 Link Here
2
include/capstone/arm64.h
2
include/capstone/arm64.h
3
include/capstone/capstone.h
3
include/capstone/capstone.h
4
include/capstone/mips.h
4
include/capstone/mips.h
5
include/capstone/platform.h
5
include/capstone/ppc.h
6
include/capstone/ppc.h
7
include/capstone/sparc.h
8
include/capstone/systemz.h
6
include/capstone/x86.h
9
include/capstone/x86.h
10
include/capstone/xcore.h
7
lib/libcapstone.a
11
lib/libcapstone.a
8
lib/libcapstone.so
12
lib/libcapstone.so
9
lib/libcapstone.so.2
13
lib/libcapstone.so.3
10
libdata/pkgconfig/capstone.pc
14
libdata/pkgconfig/capstone.pc
(-)devel/py-capstone/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	capstone
4
PORTNAME=	capstone
5
PORTVERSION=	2.1
5
PORTVERSION=	3.0.4
6
CATEGORIES=	devel python
6
CATEGORIES=	devel python
7
MASTER_SITES=	CHEESESHOP
7
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)devel/py-capstone/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (python/capstone-2.1.tar.gz) = b86ba2b9189fe60e286341da75d0ac24322014303f72ab3d6ba3d800f3af7864
1
SHA256 (python/capstone-3.0.4.tar.gz) = 945d3b8c3646a1c3914824c416439e2cf2df8969dd722c8979cdcc23b40ad225
2
SIZE (python/capstone-2.1.tar.gz) = 31720
2
SIZE (python/capstone-3.0.4.tar.gz) = 3175587
(-)devel/py-capstone/files/patch-setup.py (+22 lines)
Line 0 Link Here
1
# Do not bundle libcapstone.so
2
3
--- setup.py.orig	2015-07-15 07:43:18 UTC
4
+++ setup.py
5
@@ -175,17 +175,4 @@ setup(
6
         'Programming Language :: Python :: 3',
7
     ],
8
     requires=['ctypes'],
9
-    cmdclass=dict(
10
-        build_clib=custom_build_clib,
11
-        sdist=custom_sdist,
12
-    ),
13
-
14
-    libraries=[(
15
-        'capstone', dict(
16
-            package='capstone',
17
-            sources=dummy_src()
18
-        ),
19
-    )],
20
-
21
-    data_files=[(SITE_PACKAGES, SETUP_DATA_FILES)],
22
 )

Return to bug 203997