From owner-svn-ports-head@FreeBSD.ORG Sun Feb 9 11:47:23 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6706B811; Sun, 9 Feb 2014 11:47:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 51C5F1D9D; Sun, 9 Feb 2014 11:47:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s19BlNcv089183; Sun, 9 Feb 2014 11:47:23 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s19BlN7R089182; Sun, 9 Feb 2014 11:47:23 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201402091147.s19BlN7R089182@svn.freebsd.org> From: Antoine Brodin Date: Sun, 9 Feb 2014 11:47:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343469 - head/textproc/exslt 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.17 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 Feb 2014 11:47:23 -0000 Author: antoine Date: Sun Feb 9 11:47:22 2014 New Revision: 343469 URL: http://svnweb.freebsd.org/changeset/ports/343469 QAT: https://qat.redports.org/buildarchive/r343469/ Log: - Remove infozip dependency - Simplify installation using COPYTREE_SHARE - Replace broken plist generation with PORTDATA=* Modified: head/textproc/exslt/Makefile Modified: head/textproc/exslt/Makefile ============================================================================== --- head/textproc/exslt/Makefile Sun Feb 9 11:41:41 2014 (r343468) +++ head/textproc/exslt/Makefile Sun Feb 9 11:47:22 2014 (r343469) @@ -3,31 +3,24 @@ PORTNAME= exslt PORTVERSION= 2003.10.24 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://www.exslt.org/ DISTNAME= all-${PORTNAME} +EXTRACT_SUFX= .zip DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= hq@FreeBSD.org COMMENT= Community initiative extensions to XSLT -USE_ZIP= yes NO_WRKSUBDIR= yes NO_BUILD= yes DATAFILES= base.css date dyn exsl func howto.html index.html math random regexp set str +PORTDATA= * do-install: @${MKDIR} ${STAGEDIR}${DATADIR} - cd ${WRKSRC} && \ - ${FIND} ${DATAFILES} -type d -exec ${MKDIR} "${STAGEDIR}${DATADIR}/{}" \; && \ - ${FIND} ${DATAFILES} ! -type d -exec ${INSTALL_DATA} "{}" "${STAGEDIR}${DATADIR}/{}" \; - -post-install: - @${FIND} -s ${STAGEDIR}${DATAFILES:S/^/${DATADIR}\//} ! -type d 2>/dev/null | \ - ${SED} -ne 's,^${STAGEDIR}${PREFIX}/,,p' >> ${TMPPLIST} - @${FIND} -s -d ${STAGEDIR}${DATAFILES:S/^/${DATADIR}\//} -type d 2>/dev/null | \ - ${SED} -ne 's,^${STAGEDIR}${PREFIX}/,@dirrm ,p' >> ${TMPPLIST} - @${ECHO_CMD} '@dirrm ${DATADIR:S,^${PREFIX}/,,}' >> ${TMPPLIST} + cd ${WRKSRC} && ${COPYTREE_SHARE} "${DATAFILES}" ${STAGEDIR}${DATADIR} .include