From owner-svn-ports-all@FreeBSD.ORG Sun Mar 24 22:51:19 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8B1F360F; Sun, 24 Mar 2013 22:51:19 +0000 (UTC) (envelope-from beech@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 7D447A12; Sun, 24 Mar 2013 22:51:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2OMpJMO058695; Sun, 24 Mar 2013 22:51:19 GMT (envelope-from beech@svn.freebsd.org) Received: (from beech@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2OMpJf4058694; Sun, 24 Mar 2013 22:51:19 GMT (envelope-from beech@svn.freebsd.org) Message-Id: <201303242251.r2OMpJf4058694@svn.freebsd.org> From: Beech Rintoul Date: Sun, 24 Mar 2013 22:51:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315177 - head/graphics/hppsmtools 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, 24 Mar 2013 22:51:19 -0000 Author: beech Date: Sun Mar 24 22:51:18 2013 New Revision: 315177 URL: http://svnweb.freebsd.org/changeset/ports/315177 Log: - Convert to OptionsNG - Shorten header - Add license PR: ports/177323 Submitted by: nemysis Modified: head/graphics/hppsmtools/Makefile (contents, props changed) Modified: head/graphics/hppsmtools/Makefile ============================================================================== --- head/graphics/hppsmtools/Makefile Sun Mar 24 22:49:51 2013 (r315176) +++ head/graphics/hppsmtools/Makefile Sun Mar 24 22:51:18 2013 (r315177) @@ -1,9 +1,5 @@ -# New ports collection makefile for: hppsmtools -# Date created: 2 September 1999 -# Whom: Anders Nordby -# +# Created by: Anders Nordby # $FreeBSD$ -# PORTNAME= hppsmtools PORTVERSION= 1.1 @@ -14,7 +10,9 @@ MASTER_SITES= http://unimut.fsk.uni-heid MAINTAINER= ports@FreeBSD.org COMMENT= Tool for HP PhotoSmart C5340A & Konica Q-EZ digital cameras -PORTDOCS= README +LICENSE= GPLv2 + +PORTDOCS= README changes.txt PLIST_FILES= bin/psmdel bin/psmdir bin/psmget bin/psmsho post-patch: @@ -23,13 +21,15 @@ post-patch: @${REINPLACE_CMD} -e '/typedef unsigned char/d' ${WRKSRC}/exif.h @${REINPLACE_CMD} -e '//d' ${WRKSRC}/psm*.c +.include + do-install: .for file in psmdel psmdir psmget psmsho ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin .endfor -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} .endif .include