Date: Thu, 31 Jan 2013 20:51:48 +0000 (UTC) From: Brendan Fabeny <bf@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311336 - in head/devel: distorm py-distorm Message-ID: <201301312051.r0VKpmHU022038@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bf Date: Thu Jan 31 20:51:47 2013 New Revision: 311336 URL: http://svnweb.freebsd.org/changeset/ports/311336 Log: fix a link Reported by: J. Hein Modified: head/devel/distorm/Makefile head/devel/py-distorm/Makefile Modified: head/devel/distorm/Makefile ============================================================================== --- head/devel/distorm/Makefile Thu Jan 31 20:30:18 2013 (r311335) +++ head/devel/distorm/Makefile Thu Jan 31 20:51:47 2013 (r311336) @@ -3,7 +3,7 @@ PORTNAME?= distorm DISTVERSION= 20121220-r230 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel .if defined(PYTHON_SLAVEPORT) CATEGORIES+= python @@ -90,7 +90,7 @@ check regression-test test: build do-install: @(cd ${BUILD_WRKSRC}; ${INSTALL_LIB} libdistorm3.a ${PREFIX}/lib; \ ${INSTALL_LIB} libdistorm3.so ${PREFIX}/lib/libdistorm3.so.1; \ - ${LN} -sf ${PREFIX}/lib/libdistorm3.so.0 ${PREFIX}/lib/libdistorm3.so; \ + ${LN} -sf libdistorm3.so.1 ${PREFIX}/lib/libdistorm3.so; \ ${INSTALL_PROGRAM} disasm ${PREFIX}/bin) @${INSTALL_DATA} ${WRKSRC}/include/*.h ${PREFIX}/include Modified: head/devel/py-distorm/Makefile ============================================================================== --- head/devel/py-distorm/Makefile Thu Jan 31 20:30:18 2013 (r311335) +++ head/devel/py-distorm/Makefile Thu Jan 31 20:51:47 2013 (r311336) @@ -5,7 +5,8 @@ PORTNAME= distorm COMMENT= Python interface for fast x86 and x86-64 disassembler library +PORTREVISION= 0 PYTHON_SLAVEPORT= yes -MASTERDIR= ${.CURDIR}/../distorm +MASTERDIR= ${.CURDIR}/../distorm .include "${MASTERDIR}/Makefile"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201301312051.r0VKpmHU022038>