From owner-freebsd-ports@FreeBSD.ORG Mon Jun 9 19:33:14 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BD46ABCA for ; Mon, 9 Jun 2014 19:33:14 +0000 (UTC) Received: from amailer.gwdg.de (amailer.gwdg.de [134.76.10.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7F5A129BF for ; Mon, 9 Jun 2014 19:33:14 +0000 (UTC) Received: from p54bac09c.dip0.t-ipconnect.de ([84.186.192.156] helo=krabat.raven.hur) by mailer.gwdg.de with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1Wu4vN-0007qB-Hz; Mon, 09 Jun 2014 21:08:05 +0200 Message-ID: <53960610.7040004@gwdg.de> Date: Mon, 09 Jun 2014 21:08:00 +0200 From: Rainer Hurling User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: "A.J. 'Fonz' van Werven" , FreeBSD ports mailing list Subject: Re: [Stagedir] x11-fonts/sgifonts pending issues References: <20140609184153.GA97049@spectrum.skysmurf.nl> In-Reply-To: <20140609184153.GA97049@spectrum.skysmurf.nl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Authenticated: Id:rhurlin X-Spam-Level: - X-Virus-Scanned: (clean) by exiscan+sophie X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2014 19:33:14 -0000 Am 09.06.2014 20:41, schrieb A.J. 'Fonz' van Werven: > Attempting to stagify x11-fonts/sgifonts I'm still stuck with two issues: > > -1- > > No license is specified. There's no clue in the distfile and the WWW only > reveals that this port is part of a collection of things that are either > GPL or LGPL, but it doesn't specify which is which. And the authors can > only be contacted by registering and requesting a support ticket. > > So, is it permissible-although-undesirable to leave LICENSE unspecified? > Or is there another recommended solution? One possibility could be LICENSE= GPLv2 LGPL21 LICENSE_COMB= dual 'dual' means OR, 'multi' means AND, see Mk/bsd.licenses.mk > > -2- > > # portmaster x11-fonts/sgifonts > still results in pkg-message being displayed twice. So there must be > *something* I'm doing wrong, but I can't seem to figure out what. Any > advice? > > The Makefile as I have it now locally follows below and I've attached a > patch for those who want it because I had to replace manual creation of > pkg-message (using ${ECHO_CMD} stuff in the Makefile) with use of > files/pkg-message.in. Hmm, I am not sure. But did you really need SUB_FILES=pkg-message ? Regards, Rainer > > Thanks in advance, > > AvW > > [/usr/ports/x11-fonts/sgifonts/Makefile] > # Created by: trevor > # $FreeBSD: head/x11-fonts/sgifonts/Makefile 327781 2013-09-20 23:51:14Z bapt $ > > PORTNAME= sgifonts > PORTVERSION= 1.0.1 > PORTREVISION= 2 > CATEGORIES= x11-fonts > MASTER_SITES= ftp://patches-europe.sgi.com/pub/linux/ProPack1.4/SRPMS/ \ > ftp://ftp.rediris.es/sites/patches-europe.sgi.com/pub/linux/ProPack1.4/SRPMS/ \ > http://www.skysmurf.nl/comp/FreeBSD/distfiles/ > DISTNAME= sgi-fonts-1.0-1.src > EXTRACT_SUFX= .rpm > > MAINTAINER= freebsd@skysmurf.nl > COMMENT= Fonts from the SGI ProPack 1.4 (originally for Linux) > > BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \ > mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir > > SUB_FILES= pkg-message > SUB_LIST= FONTDIR=${FONTDIR} > FONTDIR= lib/X11/fonts/local/sgi > PLIST= ${WRKDIR}/pkg-plist > PLIST_DIRS= ${FONTDIR} > USES= imake > EXTRACT_CMD= ${TAR} > EXTRACT_BEFORE_ARGS= -O -xf > EXTRACT_AFTER_ARGS= sgi-fonts.tar.gz | ${TAR} -xf - > WRKSRC= ${WRKDIR}/sgi-fonts > > post-build: > @${RM} -f ${PLIST} > @cd ${WRKSRC}; \ > for foo in `${LS} *gz fonts.alias fonts.dir|${SORT}`; \ > do ${ECHO_CMD} ${FONTDIR}/$${foo} >> ${PLIST}; done > > do-install: > ${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR} > ${INSTALL_DATA} ${WRKSRC}/*gz ${STAGEDIR}${PREFIX}/${FONTDIR} > ${INSTALL_DATA} ${WRKSRC}/fonts* ${STAGEDIR}${PREFIX}/${FONTDIR} > > .include > [eof]