From owner-svn-ports-head@freebsd.org Sun Aug 9 04:59:18 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4451C3ACE2B; Sun, 9 Aug 2020 04:59:18 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BPRhk156Cz4g6x; Sun, 9 Aug 2020 04:59:18 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 07D9A1453A; Sun, 9 Aug 2020 04:59:18 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0794xHDo001635; Sun, 9 Aug 2020 04:59:17 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0794xHwp001634; Sun, 9 Aug 2020 04:59:17 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202008090459.0794xHwp001634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Sun, 9 Aug 2020 04:59:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544542 - head/devel/libcircllhist X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/devel/libcircllhist X-SVN-Commit-Revision: 544542 X-SVN-Commit-Repository: ports 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.33 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: Sun, 09 Aug 2020 04:59:18 -0000 Author: danfe Date: Sun Aug 9 04:59:17 2020 New Revision: 544542 URL: https://svnweb.freebsd.org/changeset/ports/544542 Log: - Install libcircllhist.so.0 symlink to match the SONAME - Convert PLIST_FILES to pkg-plist given the number of items Added: head/devel/libcircllhist/pkg-plist (contents, props changed) Modified: head/devel/libcircllhist/Makefile Modified: head/devel/libcircllhist/Makefile ============================================================================== --- head/devel/libcircllhist/Makefile Sun Aug 9 04:53:26 2020 (r544541) +++ head/devel/libcircllhist/Makefile Sun Aug 9 04:59:17 2020 (r544542) @@ -3,6 +3,7 @@ PORTNAME= libcircllhist PORTVERSION= g20200417 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= ports@FreeBSD.org @@ -18,9 +19,8 @@ USES= autoreconf gmake GNU_CONFIGURE= yes USE_LDCONFIG= yes -PLIST_FILES= bin/circllhist_print \ - include/circllhist.h lib/libcircllhist.a \ - lib/libcircllhist.so lib/libcircllhist.so.0.0.1 \ - share/lua/5.1/ffi_libcircllhist.lua +post-install: + ${LN} -s libcircllhist.so.0.0.1 \ + ${STAGEDIR}${PREFIX}/lib/libcircllhist.so.0 .include Added: head/devel/libcircllhist/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libcircllhist/pkg-plist Sun Aug 9 04:59:17 2020 (r544542) @@ -0,0 +1,7 @@ +bin/circllhist_print +include/circllhist.h +lib/libcircllhist.a +lib/libcircllhist.so +lib/libcircllhist.so.0 +lib/libcircllhist.so.0.0.1 +share/lua/5.1/ffi_libcircllhist.lua