From owner-svn-ports-head@freebsd.org Mon Sep 14 17:12:37 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 26FCBA033C7; Mon, 14 Sep 2015 17:12:37 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F2A7610E1; Mon, 14 Sep 2015 17:12:36 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8EHCa4N074634; Mon, 14 Sep 2015 17:12:36 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8EHCaFe074632; Mon, 14 Sep 2015 17:12:36 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201509141712.t8EHCaFe074632@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 14 Sep 2015 17:12:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396909 - head/lang/smalltalk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Sep 2015 17:12:37 -0000 Author: amdmi3 Date: Mon Sep 14 17:12:35 2015 New Revision: 396909 URL: https://svnweb.freebsd.org/changeset/ports/396909 Log: - Fix installed manpage symlink to not point inside stagedir - Add missing plist entries: .pc file and empty directory (the latter is created in post-install, is it really needed?) - Unsilence install command PR: 202794 Submitted by: amdmi3 Approved by: maintainer timeout (johans, 2 weeks) Modified: head/lang/smalltalk/Makefile head/lang/smalltalk/pkg-plist Modified: head/lang/smalltalk/Makefile ============================================================================== --- head/lang/smalltalk/Makefile Mon Sep 14 17:11:34 2015 (r396908) +++ head/lang/smalltalk/Makefile Mon Sep 14 17:12:35 2015 (r396909) @@ -3,7 +3,7 @@ PORTNAME= smalltalk PORTVERSION= 3.2.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= lang MASTER_SITES= GNU @@ -60,15 +60,18 @@ post-patch: ${WRKSRC}/libgst/prims.inl @${REINPLACE_CMD} -e '/^ac_include/s/\\$$/#include \\/' \ ${WRKSRC}/snprintfv/configure + @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|$$(prefix)/libdata/pkgconfig|' \ + ${WRKSRC}/Makefile.am ${WRKSRC}/Makefile.in post-build: @${SED} -e 's|@bindir@|${PREFIX}/bin|g' \ ${WRKSRC}/gst-mode.el.in > ${WRKSRC}/gst-mode.el post-install: + @${LN} -sf gst-load.1 ${STAGEDIR}${MANPREFIX}/man/man1/gst-reload.1 @${MKDIR} ${STAGEDIR}${DATADIR}/gtk - @${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/share/emacs/site-lisp - @ls -1 ${STAGEDIR}${PREFIX}/bin/gst* |grep -v config|xargs ${STRIP_CMD} + ${INSTALL_DATA} ${WRKSRC}/*.el ${STAGEDIR}${PREFIX}/share/emacs/site-lisp + @${LS} -1 ${STAGEDIR}${PREFIX}/bin/gst* |grep -v config|xargs ${STRIP_CMD} @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/smalltalk/*.so @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgst.so Modified: head/lang/smalltalk/pkg-plist ============================================================================== --- head/lang/smalltalk/pkg-plist Mon Sep 14 17:11:34 2015 (r396908) +++ head/lang/smalltalk/pkg-plist Mon Sep 14 17:12:35 2015 (r396909) @@ -49,6 +49,7 @@ lib/smalltalk/sdl.so lib/smalltalk/zlib-%%VERSION%%.so lib/smalltalk/zlib.a lib/smalltalk/zlib.so +libdata/pkgconfig/gnu-smalltalk.pc libexec/smalltalk/gnutls-wrapper libexec/smalltalk/vfs/deb libexec/smalltalk/vfs/lslR @@ -75,3 +76,4 @@ share/aclocal/gst.m4 share/aclocal/gst-package.m4 share/emacs/site-lisp/gst-mode.el share/emacs/site-lisp/smalltalk-mode.el +@dir %%DATADIR%%/gtk