From owner-svn-ports-head@freebsd.org Fri Jun 19 20:07:02 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 4C3443381A5; Fri, 19 Jun 2020 20:07:02 +0000 (UTC) (envelope-from mi@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 49pVFf133qz3WJr; Fri, 19 Jun 2020 20:07:02 +0000 (UTC) (envelope-from mi@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 1F13620A10; Fri, 19 Jun 2020 20:07:02 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 05JK71mA025772; Fri, 19 Jun 2020 20:07:01 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 05JK71J6025769; Fri, 19 Jun 2020 20:07:01 GMT (envelope-from mi@FreeBSD.org) Message-Id: <202006192007.05JK71J6025769@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Fri, 19 Jun 2020 20:07:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r539676 - in head/textproc: . linux-c7-libxslt X-SVN-Group: ports-head X-SVN-Commit-Author: mi X-SVN-Commit-Paths: in head/textproc: . linux-c7-libxslt X-SVN-Commit-Revision: 539676 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: Fri, 19 Jun 2020 20:07:02 -0000 Author: mi Date: Fri Jun 19 20:07:01 2020 New Revision: 539676 URL: https://svnweb.freebsd.org/changeset/ports/539676 Log: Add Linux version of libxslt, as might be required by future application ports. Added: head/textproc/linux-c7-libxslt/ head/textproc/linux-c7-libxslt/Makefile (contents, props changed) head/textproc/linux-c7-libxslt/distinfo (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jun 19 19:46:20 2020 (r539675) +++ head/textproc/Makefile Fri Jun 19 20:07:01 2020 (r539676) @@ -397,6 +397,7 @@ SUBDIR += linux-c7-aspell SUBDIR += linux-c7-expat SUBDIR += linux-c7-libxml2 + SUBDIR += linux-c7-libxslt SUBDIR += linuxdoc SUBDIR += linuxdoc-tools SUBDIR += localize Added: head/textproc/linux-c7-libxslt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/linux-c7-libxslt/Makefile Fri Jun 19 20:07:01 2020 (r539676) @@ -0,0 +1,35 @@ +# Created by: Mikhail Teterin +# $FreeBSD$ + +PORTNAME= libxslt +PORTVERSION= 1.1.28 +DISTVERSIONSUFFIX= -5.el7 +CATEGORIES= x11 linux + +MAINTAINER= emulation@FreeBSD.org +COMMENT= XSLT C library for GNOME (Linux CentOS ${LINUX_DIST_VER}) + +USES= linux:c7 +USE_LDCONFIG= yes +USE_LINUX_RPM= yes +SRC_DISTFILES= + +DESCR= ${.CURDIR:H}/${PORTNAME}/pkg-descr +LIBDIR= usr/lib${ARCH:S/i386//:S/amd64/64/} +PLIST_FILES= ${LIBDIR}/libxslt.so.${PORTVERSION} ${LIBDIR}/libxslt.so.1 \ + ${LIBDIR}/libexslt.so.0.8.17 ${LIBDIR}/libexslt.so.0 + +# Note, that we do not install the /usr/bin/xsltproc -- use FreeBSD's +# own compiled executable, if you need it. + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/${LIBDIR} + ${LN} ${WRKSRC}/${LIBDIR}/libxslt.so.${PORTVERSION} \ + ${WRKSRC}/${LIBDIR}/libexslt.so.0.8.17 \ + ${STAGEDIR}${PREFIX}/${LIBDIR} + ${LN} -s libxslt.so.${PORTVERSION} \ + ${STAGEDIR}${PREFIX}/${LIBDIR}/libxslt.so.1 + ${LN} -s libexslt.so.0.8.17 \ + ${STAGEDIR}${PREFIX}/${LIBDIR}/libexslt.so.0 + +.include Added: head/textproc/linux-c7-libxslt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/linux-c7-libxslt/distinfo Fri Jun 19 20:07:01 2020 (r539676) @@ -0,0 +1,5 @@ +TIMESTAMP = 1592332377 +SHA256 (centos/libxslt-1.1.28-5.el7.i686.rpm) = f06276ca592af56b1354181d57beebb8582fd7b7019ec0cf9d346fa600578108 +SIZE (centos/libxslt-1.1.28-5.el7.i686.rpm) = 242504 +SHA256 (centos/libxslt-1.1.28-5.el7.x86_64.rpm) = 9b7e224a03cbf0f68c91e9c5e2e67a747a4edb1d5fdcad15d0c945d41780eaf4 +SIZE (centos/libxslt-1.1.28-5.el7.x86_64.rpm) = 247484