From owner-svn-ports-all@FreeBSD.ORG Thu Oct 31 23:55:02 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4CF62D3F; Thu, 31 Oct 2013 23:55:02 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 212A92D17; Thu, 31 Oct 2013 23:55:02 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VNt2CT019926; Thu, 31 Oct 2013 23:55:02 GMT (envelope-from garga@svn.freebsd.org) Received: (from garga@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VNt1HI019923; Thu, 31 Oct 2013 23:55:01 GMT (envelope-from garga@svn.freebsd.org) Message-Id: <201310312355.r9VNt1HI019923@svn.freebsd.org> From: Renato Botelho Date: Thu, 31 Oct 2013 23:55:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332331 - in head/x11-fonts/artwiz-aleczapka: . 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-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: Thu, 31 Oct 2013 23:55:02 -0000 Author: garga Date: Thu Oct 31 23:55:01 2013 New Revision: 332331 URL: http://svnweb.freebsd.org/changeset/ports/332331 Log: . Support STAGE . Simplify Makefile . Move pkg-message to files/pkg-message.in and use SUB_FILES Added: head/x11-fonts/artwiz-aleczapka/files/ head/x11-fonts/artwiz-aleczapka/files/pkg-message.in (contents, props changed) - copied, changed from r332291, head/x11-fonts/artwiz-aleczapka/pkg-message Deleted: head/x11-fonts/artwiz-aleczapka/pkg-message Modified: head/x11-fonts/artwiz-aleczapka/Makefile (contents, props changed) Modified: head/x11-fonts/artwiz-aleczapka/Makefile ============================================================================== --- head/x11-fonts/artwiz-aleczapka/Makefile Thu Oct 31 23:53:45 2013 (r332330) +++ head/x11-fonts/artwiz-aleczapka/Makefile Thu Oct 31 23:55:01 2013 (r332331) @@ -18,19 +18,14 @@ FONTS= anorexia aqui cure cursor drift glisp-bold glisp kates lime mints-mild mints-strong \ nu smoothansi snap FONTDIR= ${LOCALBASE}/lib/X11/fonts/${PORTNAME}/ -FILES= ${FONTS:S,$,.pcf,} ${WRKSRC}/fonts.alias \ - ${WRKSRC}/fonts.cache-1 ${WRKSRC}/fonts.dir +FILES= ${FONTS:S,$,.pcf,} fonts.alias fonts.cache-1 fonts.dir -NO_STAGE= yes .include do-install: - @${MKDIR} ${FONTDIR} - cd ${WRKSRC} && ${INSTALL_DATA} ${FILES} ${FONTDIR} - -post-install: - @${SED} 's|$${LOCALBASE}|${LOCALBASE}|g' \ - ${PKGDIR}/pkg-message >${PKGMESSAGE} - @${CAT} ${PKGMESSAGE} + @${MKDIR} ${STAGEDIR}${FONTDIR} +.for f in ${FILES} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${FONTDIR} +.endfor .include Copied and modified: head/x11-fonts/artwiz-aleczapka/files/pkg-message.in (from r332291, head/x11-fonts/artwiz-aleczapka/pkg-message) ============================================================================== --- head/x11-fonts/artwiz-aleczapka/pkg-message Thu Oct 31 22:33:37 2013 (r332291, copy source) +++ head/x11-fonts/artwiz-aleczapka/files/pkg-message.in Thu Oct 31 23:55:01 2013 (r332331) @@ -6,6 +6,6 @@ Add the following line to the "Files" section and restart XFree86. - FontPath "${LOCALBASE}/lib/X11/fonts/artwiz-aleczapka-en" + FontPath "%%LOCALBASE%%/lib/X11/fonts/artwiz-aleczapka-en" ------------------------------------------------------------------