From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 11 23:41:50 2013 Return-Path: Delivered-To: freebsd-ports-bugs@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 05C63690; Fri, 11 Jan 2013 23:41:50 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from gate.utahime.jp (gate.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id A380A9B4; Fri, 11 Jan 2013 23:41:49 +0000 (UTC) Received: from eastasia.home.utahime.org (mail.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id A9F0661F9D; Sat, 12 Jan 2013 08:41:47 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 7D0264E63D; Sat, 12 Jan 2013 08:41:47 +0900 (JST) Received: from [192.168.174.6] (rolling.home.utahime.org [192.168.174.6]) by eastasia.home.utahime.org (Postfix) with ESMTPA id 55E914E62C; Sat, 12 Jan 2013 08:41:47 +0900 (JST) Message-ID: <50F0A33B.6090009@utahime.org> Date: Sat, 12 Jan 2013 08:41:47 +0900 From: KIMURA Yasuhiro User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130107 Thunderbird/17.0.2 MIME-Version: 1.0 To: Jason Helfman , FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/175192: [MAINTAINER] mail/c-sig: OptionsNG-fy and trim makefile header References: <201301111400.r0BE01JQ095290@freefall.freebsd.org> In-Reply-To: Content-Type: multipart/mixed; boundary="------------070800070105050707060706" X-Virus-Scanned: ClamAV using ClamSMTP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jan 2013 23:41:50 -0000 This is a multi-part message in MIME format. --------------070800070105050707060706 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit (2013/01/12 6:45), Jason Helfman wrote: > where is the license for this stated outside of the port? > thanks! > -jgh It is statete inside source code. Is it OK with attached patch? Best regards. --------------070800070105050707060706 Content-Type: text/plain; charset=Shift_JIS; name="patch-c-sig" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-c-sig" Index: Makefile =================================================================== --- Makefile (revision 310228) +++ Makefile (working copy) @@ -1,9 +1,4 @@ -# New ports collection makefile for: c-sig -# Date created: 30 May 2004 -# Whom: KIMURA Yasuhiro -# # $FreeBSD$ -# PORTNAME= c-sig PORTVERSION= 3.8 @@ -17,18 +12,27 @@ MAINTAINER= yasu@utahime.org COMMENT= Signature insertion tool for Emacs +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/c-sig.el + USE_EMACS= yes NO_WRKSUBDIR= yes + +OPTIONS_DEFINE= DOCS +OPTIONS_DEFAULT= DOCS + LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME} +.include + do-build: cd ${WRKSRC}; ${EMACS_CMD} -batch -q -f batch-byte-compile c-sig.el do-install: ${MKDIR} ${LISPDIR} ${INSTALL_DATA} ${WRKSRC}/c-sig.el* ${LISPDIR} -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for file in c-sig-eng.faq c-sig-eng.man c-sig-jp.faq c-sig-jp.man ${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR} --------------070800070105050707060706--