Date: Thu, 4 Jun 2015 09:43:21 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388519 - head/lang/sketchy Message-ID: <201506040943.t549hLZF061739@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Thu Jun 4 09:43:21 2015 New Revision: 388519 URL: https://svnweb.freebsd.org/changeset/ports/388519 Log: - Fix library symlink - Strip library Modified: head/lang/sketchy/Makefile Modified: head/lang/sketchy/Makefile ============================================================================== --- head/lang/sketchy/Makefile Thu Jun 4 09:42:57 2015 (r388518) +++ head/lang/sketchy/Makefile Thu Jun 4 09:43:21 2015 (r388519) @@ -3,6 +3,7 @@ PORTNAME= sketchy PORTVERSION= 20070218 +PORTREVISION= 1 CATEGORIES= lang devel lisp scheme MASTER_SITES= http://www.t3x.org/files/ @@ -23,7 +24,10 @@ post-patch: ${WRKSRC}/Makefile post-install: - @${LN} -s ${MANPREFIX}/man/man1/sketchy.1.gz \ + cd ${STAGEDIR} && ${FIND} . -not -type d -exec ls -ld {} \; + ${LN} -sf libsketchy.so.31 ${STAGEDIR}${PREFIX}/lib/libsketchy.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libsketchy.so + ${LN} -s ${MANPREFIX}/man/man1/sketchy.1.gz \ ${STAGEDIR}${MANPREFIX}/man/man1/sk.1.gz .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506040943.t549hLZF061739>