From owner-svn-ports-head@FreeBSD.ORG Sat Feb 16 15:29:03 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 02A97CCB; Sat, 16 Feb 2013 15:29:03 +0000 (UTC) (envelope-from pclin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id E8076EFE; Sat, 16 Feb 2013 15:29:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r1GFT2Tn033527; Sat, 16 Feb 2013 15:29:02 GMT (envelope-from pclin@svn.freebsd.org) Received: (from pclin@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r1GFT2I0033523; Sat, 16 Feb 2013 15:29:02 GMT (envelope-from pclin@svn.freebsd.org) Message-Id: <201302161529.r1GFT2I0033523@svn.freebsd.org> From: Po-Chien Lin Date: Sat, 16 Feb 2013 15:29:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r312362 - in head/textproc/mxml: . files 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.14 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: Sat, 16 Feb 2013 15:29:03 -0000 Author: pclin Date: Sat Feb 16 15:29:01 2013 New Revision: 312362 URL: http://svnweb.freebsd.org/changeset/ports/312362 Log: - Update to 2.7 - Add custom LICENSE MXML - Add USE_LDCONFIG to include new shared library - Switch to OPTIONSng - Change DOCS installing hierarchy from ${DOCSDIR}/doc/ to ${DOCSDIR}/ - Remove unnecessary patch (have been merged into upstream) - Replace TAB with space in pkg-descr WWW: line PR: ports/175315 Submitted by: Po-Chien Lin Approved by: swills (mentor) Deleted: head/textproc/mxml/files/patch-mxmldoc.c Modified: head/textproc/mxml/Makefile (contents, props changed) head/textproc/mxml/distinfo (contents, props changed) head/textproc/mxml/files/patch-libtool22 (contents, props changed) head/textproc/mxml/pkg-descr (contents, props changed) Modified: head/textproc/mxml/Makefile ============================================================================== --- head/textproc/mxml/Makefile Sat Feb 16 15:20:02 2013 (r312361) +++ head/textproc/mxml/Makefile Sat Feb 16 15:29:01 2013 (r312362) @@ -1,12 +1,8 @@ -# New ports collection makefile for: mxml -# Date created: 2007-10-12 -# Whom: Martin Wilke -# +# Created by: Martin Wilke # $FreeBSD$ -# PORTNAME= mxml -PORTVERSION= 2.6 +PORTVERSION= 2.7 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_EASYSW} MASTER_SITE_SUBDIR= mxml/${PORTVERSION} @@ -14,12 +10,18 @@ MASTER_SITE_SUBDIR= mxml/${PORTVERSION} MAINTAINER= hsmtkk@gmail.com COMMENT= Small XML parsing library +LICENSE= MXML +LICENSE_NAME= Mini-XML License +LICENSE_FILE= ${WRKSRC}/COPYING +LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept + GNU_CONFIGURE= yes USE_GMAKE= yes USE_AUTOTOOLS= libtool USE_GNOME= gnomehack CONFIGURE_ARGS= --with-docdir=no MAKE_JOBS_SAFE= yes +USE_LDCONFIG= yes MAN1= mxmldoc.1 MAN3= mxml.3 @@ -28,12 +30,15 @@ PORTDOCS= * PLIST_FILES= bin/mxmldoc include/mxml.h \ lib/libmxml.a \ + lib/libmxml.so lib/libmxml.so.1 lib/libmxml.so.1.5 \ libdata/pkgconfig/mxml.pc +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - @${CP} -R ${PORTDOCS:S,^,${WRKSRC}/doc,} ${DOCSDIR} + (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR}) .endif .include Modified: head/textproc/mxml/distinfo ============================================================================== --- head/textproc/mxml/distinfo Sat Feb 16 15:20:02 2013 (r312361) +++ head/textproc/mxml/distinfo Sat Feb 16 15:29:01 2013 (r312362) @@ -1,2 +1,2 @@ -SHA256 (mxml-2.6.tar.gz) = b0d347da1a0d5a8c9e82f66087d55cfe499728dacae563740d7e733648c69795 -SIZE (mxml-2.6.tar.gz) = 254455 +SHA256 (mxml-2.7.tar.gz) = a77200ee4c1e1cf2eb531595ec17ce31805760699d260915496c39d3388eb803 +SIZE (mxml-2.7.tar.gz) = 262027 Modified: head/textproc/mxml/files/patch-libtool22 ============================================================================== --- head/textproc/mxml/files/patch-libtool22 Sat Feb 16 15:20:02 2013 (r312361) +++ head/textproc/mxml/files/patch-libtool22 Sat Feb 16 15:29:01 2013 (r312362) @@ -1,6 +1,6 @@ --- Makefile.in.orig 2009-07-14 23:48:58.000000000 -0500 +++ Makefile.in 2009-07-14 23:49:34.000000000 -0500 -@@ -59,10 +59,10 @@ +@@ -57,10 +57,10 @@ # Install commands... # Modified: head/textproc/mxml/pkg-descr ============================================================================== --- head/textproc/mxml/pkg-descr Sat Feb 16 15:20:02 2013 (r312361) +++ head/textproc/mxml/pkg-descr Sat Feb 16 15:29:01 2013 (r312362) @@ -2,4 +2,4 @@ Mini-XML is a small XML parsing library read XML and XML-like data files in your application without requiring large non-standard libraries. -WWW: http://www.minixml.org/ +WWW: http://www.minixml.org/