1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Update to 1.10

PR:		140406
Submitted by:	maintainer
This commit is contained in:
Tilman Keskinoz 2009-11-09 10:40:35 +00:00
parent 6d225990bb
commit b668a960f2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=244021
3 changed files with 21 additions and 6 deletions

View File

@ -6,9 +6,9 @@
#
PORTNAME= abi-compliance-checker
PORTVERSION= 1.9
PORTVERSION= 1.10
CATEGORIES= devel perl5
MASTER_SITES= http://ispras.linux-foundation.org/images/8/8c/
MASTER_SITES= http://ispras.linux-foundation.org/images/3/34/
DISTFILES= ${PORTNAME:S/^a/A/}-${PORTVERSION}${EXTRACT_SUFX}
MAINTAINER= bf1783@gmail.com
@ -25,7 +25,8 @@ READELF?= readelf
post-patch:
${REINPLACE_CMD} -e "s|c++filt|${CPPFILT}|g" \
-e "s|readelf|${READELF}|g" -e "s|g++|${CXX}|g" \
-e "s|\"gcc|\"${CC}|g" -e "s|-shared|& -fPIC|g" ${WRKSRC}/${PORTNAME}.pl
-e "s|\"gcc|\"${CC}|g" -e "s|-shared|& -fPIC|g" \
${WRKSRC}/${PORTNAME}.pl
do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin

View File

@ -1,3 +1,3 @@
MD5 (Abi-compliance-checker-1.9.tar.gz) = 1d64e540785b36ba3052745cd569d1a1
SHA256 (Abi-compliance-checker-1.9.tar.gz) = d6c9b3d1d3ca3009792ad270e0748db105dd0a26d2e1d0034532c78b9e37e7a0
SIZE (Abi-compliance-checker-1.9.tar.gz) = 47940
MD5 (Abi-compliance-checker-1.10.tar.gz) = 2e591097462d4fa60460ee7ddf023325
SHA256 (Abi-compliance-checker-1.10.tar.gz) = 8b54c500745b333ae8db69d2d81236f8676d21e9195ad041a27b82af40e7abe0
SIZE (Abi-compliance-checker-1.10.tar.gz) = 49323

View File

@ -0,0 +1,14 @@
--- abi-compliance-checker.pl.orig 2009-11-08 14:27:20.000000000 -0500
+++ abi-compliance-checker.pl 2009-11-08 14:33:06.000000000 -0500
@@ -6673,9 +6673,9 @@
}
else
{
- foreach my $Line (split("\n", `ldconfig -p`))
+ foreach my $Line (split("\n", `ldconfig -r`))
{
- if($Line=~/\A[ \t]*([^ \t]+) .* \=\> (.+)\Z/)
+ if($Line=~/\A\t[0-9]*:(.+) \=\> (.+)\Z/)
{
my ($SoCandidate, $Path) = ($1, $2);