aboutsummaryrefslogtreecommitdiff
path: root/devel/abi-compliance-checker/Makefile
blob: 57276c0c2968e141c31f8d6c1f2c9ebd36a71cb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# New ports collection makefile for:	abi-compliance-checker
# Date created:		August 21, 2009
# Whom:	      		bf <bf@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	abi-compliance-checker
PORTVERSION=	1.21.10
CATEGORIES=	devel perl5
MASTER_SITES=	http://linuxtesting.org/downloads/ \
		LOCAL/bf

MAINTAINER=	bf@FreeBSD.org
COMMENT=	Checks binary compatibility of two versions of a C/C++ shared library

LICENSE=	LGPL20 GPLv2
LICENSE_COMB=	dual

NO_BUILD=	yes
USE_PERL5_RUN=	yes

PLIST_FILES=	bin/${PORTNAME}.pl

CPPFILT?=	c++filt
READELF?=	readelf

post-patch:
	@${REINPLACE_CMD} \
		-e "\|ArCmd =|s|=.*|= \"${AR}\";|" \
		-e "\|CPP_FILT =|s|=.*|= \"${CPPFILT}\";|" \
		-e "\|GCC_PATH =|s|=.*|= \"${CC}\";|" \
		-e "\|GPP_PATH =|s|=.*|= \"${CXX}\";|" \
		-e "\|ObjdumpCmd =|s|=.*|= \"${OBJDUMP}\";|" \
		-e "\|ReadelfCmd =|s|=.*|= \"${READELF}\";|" \
		-e "s|-shared|& -fPIC|g" \
		-e "s|detailes|details|g" \
		${WRKSRC}/${PORTNAME}.pl

do-install:
	@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin

check regression-test test: build
	@(cd ${WRKSRC} && ./${PORTNAME}.pl -test )

.ifndef(NOPORTDOCS)
PORTDOCS=	Changes.html Descriptor.html Options.html Readme.html

post-install:
	@${MKDIR} ${DOCSDIR}
	@(cd ${WRKSRC}/doc; ${INSTALL_MAN} ${PORTDOCS} ${DOCSDIR})

.endif
.include <bsd.port.mk>