From owner-svn-ports-all@FreeBSD.ORG Sun Jun 16 08:14:36 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id D13C147C; Sun, 16 Jun 2013 08:14:36 +0000 (UTC) (envelope-from culot@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 B37CE1ECA; Sun, 16 Jun 2013 08:14:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5G8Eabm035027; Sun, 16 Jun 2013 08:14:36 GMT (envelope-from culot@svn.freebsd.org) Received: (from culot@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5G8EaKR035024; Sun, 16 Jun 2013 08:14:36 GMT (envelope-from culot@svn.freebsd.org) Message-Id: <201306160814.r5G8EaKR035024@svn.freebsd.org> From: Frederic Culot Date: Sun, 16 Jun 2013 08:14:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321025 - head/devel/libtpl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2013 08:14:36 -0000 Author: culot Date: Sun Jun 16 08:14:35 2013 New Revision: 321025 URL: http://svnweb.freebsd.org/changeset/ports/321025 Log: - Update to 1.6 [1] - Update MASTER_SITES and WWW link [1] - Trim Makefile's header [1] - Convert to optionsng [1] - Switch from pkg-plist to PLIST_FILES Changes: http://troydhanson.github.io/tpl/ChangeLog.html PR: ports/179575 [1] Submitted by: Waitman Gobble Deleted: head/devel/libtpl/pkg-plist Modified: head/devel/libtpl/Makefile head/devel/libtpl/distinfo head/devel/libtpl/pkg-descr Modified: head/devel/libtpl/Makefile ============================================================================== --- head/devel/libtpl/Makefile Sun Jun 16 07:07:17 2013 (r321024) +++ head/devel/libtpl/Makefile Sun Jun 16 08:14:35 2013 (r321025) @@ -1,14 +1,10 @@ -# New ports collection makefile for: libtpl -# Date created: 30 July 2010 -# Whom: Frederic Culot -# +# Created by: Frederic Culot # $FreeBSD$ -# PORTNAME= libtpl -PORTVERSION= 1.5 +PORTVERSION= 1.6 CATEGORIES= devel -MASTER_SITES= SF/tpl/tpl/${PORTNAME}-${PORTVERSION}/ +MASTER_SITES= GH MAINTAINER= culot@FreeBSD.org COMMENT= Tpl is a library for serializing C data @@ -16,13 +12,29 @@ COMMENT= Tpl is a library for serializin LICENSE= BSD USE_BZIP2= yes +USE_GITHUB= yes +GH_ACCOUNT= waitman +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 8fa17e5 + GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-shared USE_LDCONFIG= yes +PLIST_FILES= lib/libtpl.la lib/libtpl.a \ + lib/libtpl.so lib/libtpl.so.0 \ + include/tpl.h + +PORTDOCS= ChangeLog.txt examples.txt userguide.txt compiling.txt + +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/txt/userguide.txt ${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${DOCSDIR} +.endfor .endif .include Modified: head/devel/libtpl/distinfo ============================================================================== --- head/devel/libtpl/distinfo Sun Jun 16 07:07:17 2013 (r321024) +++ head/devel/libtpl/distinfo Sun Jun 16 08:14:35 2013 (r321025) @@ -1,2 +1,2 @@ -SHA256 (libtpl-1.5.tar.bz2) = 50a2cc80775f0a70a033b2f663419c8322e8f43b754c32675dad97ba42db24d5 -SIZE (libtpl-1.5.tar.bz2) = 590163 +SHA256 (libtpl-1.6.tar.bz2) = 33a768a704999cdd8e3c01259cf1628032d8fa0375943970e31212bc900e696e +SIZE (libtpl-1.6.tar.bz2) = 579051 Modified: head/devel/libtpl/pkg-descr ============================================================================== --- head/devel/libtpl/pkg-descr Sun Jun 16 07:07:17 2013 (r321024) +++ head/devel/libtpl/pkg-descr Sun Jun 16 08:14:35 2013 (r321025) @@ -1,5 +1,6 @@ -Tpl is a library for serializing C data. The data is stored in its -natural binary form. The API is small and tries to stay "out of the -way". Tpl can serialize many C data types, including structures. +You can use tpl to store and reload your C data quickly and easily. +Tpl works with files, memory buffers and file descriptors so it's +suitable for use as a file format, IPC message format or any scenario +where you need to store and retrieve your data. -WWW: http://tpl.sourceforge.net/ +WWW: http://troydhanson.github.io/tpl/