From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Oct 18 00:40:01 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0519C1065676 for ; Sun, 18 Oct 2009 00:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D0C5B8FC1D for ; Sun, 18 Oct 2009 00:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n9I0e078009936 for ; Sun, 18 Oct 2009 00:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n9I0e020009935; Sun, 18 Oct 2009 00:40:00 GMT (envelope-from gnats) Resent-Date: Sun, 18 Oct 2009 00:40:00 GMT Resent-Message-Id: <200910180040.n9I0e020009935@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Sylvio Cesar Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 964D3106566B for ; Sun, 18 Oct 2009 00:38:36 +0000 (UTC) (envelope-from scjamorim@bsd.com.br) Received: from mail-yw0-f178.google.com (mail-yw0-f178.google.com [209.85.211.178]) by mx1.freebsd.org (Postfix) with ESMTP id 581378FC1D for ; Sun, 18 Oct 2009 00:38:36 +0000 (UTC) Received: by ywh8 with SMTP id 8so2948777ywh.3 for ; Sat, 17 Oct 2009 17:38:35 -0700 (PDT) Received: by 10.150.254.3 with SMTP id b3mr5390944ybi.161.1255826315680; Sat, 17 Oct 2009 17:38:35 -0700 (PDT) Received: from fbsd.scjamorim.org (200-140-166-177.bsace705.dsl.brasiltelecom.net.br [200.140.166.177]) by mx.google.com with ESMTPS id 22sm1737288ywh.4.2009.10.17.17.38.34 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 17 Oct 2009 17:38:35 -0700 (PDT) Received: by fbsd.scjamorim.org (Postfix, from userid 0) id 92AA83F5FBB; Sat, 17 Oct 2009 21:38:27 -0300 (BRT) Message-Id: <20091018003827.92AA83F5FBB@fbsd.scjamorim.org> Date: Sat, 17 Oct 2009 21:38:27 -0300 (BRT) From: Sylvio Cesar To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/139712: [PATCH] astro/spacechart: Added pkg-plist into of Makefile. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Oct 2009 00:40:01 -0000 >Number: 139712 >Category: ports >Synopsis: [PATCH] astro/spacechart: Added pkg-plist into of Makefile. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Oct 18 00:40:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sylvio Cesar >Release: FreeBSD 9.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD fbsd.scjamorim.org 9.0-CURRENT FreeBSD 9.0-CURRENT #0: Sat Oct 10 21:33:17 BRT 2009 >Description: - Added pkg-plist to Makefile - Added PLIST_FILES to Makefile Removed file(s): - pkg-plist Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- spacechart-0.9.4_8.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/astro/spacechart/Makefile,v retrieving revision 1.22 diff -u -u -r1.22 Makefile --- Makefile 31 Jul 2009 13:48:46 -0000 1.22 +++ Makefile 18 Oct 2009 00:35:22 -0000 @@ -19,10 +19,19 @@ USE_GNOME= gnomelibs CONFIGURE_ARGS= --without-included-gettext --datadir=${PREFIX}/share +PORTDOCS= README coordinates.txt + +PLIST_FILES= bin/spacechart \ + etc/sample-spacechartrc \ + etc/spacechartrc \ + share/locale/es/LC_MESSAGES/spacechart.mo \ + share/spacechart/gliese.dat + # trick it into using ports installed gettext post-patch: @${REINPLACE_CMD} -e 's|\(INTLLIBS =\).*$$|\1-I${LOCALBASE}/lib -lintl|' \ ${WRKSRC}/src/Makefile.in + ${CP} ${WRKSRC}/doc/coordinates.txt ${WRKSRC} pre-build: @${RM} -Rf ${WRKSRC}/intl @@ -31,8 +40,9 @@ @${INSTALL_DATA} ${WRKSRC}/doc/sample-spacechartrc ${PREFIX}/etc .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/coordinates.txt \ - ${WRKSRC}/README ${DOCSDIR} +.for docs in ${PORTDOCS} + @${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR} +.endfor .endif .include Index: pkg-plist =================================================================== RCS file: pkg-plist diff -N pkg-plist --- pkg-plist 21 Oct 2003 11:17:08 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,9 +0,0 @@ -bin/spacechart -etc/sample-spacechartrc -etc/spacechartrc -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/coordinates.txt -share/locale/es/LC_MESSAGES/spacechart.mo -share/spacechart/gliese.dat -@dirrm share/spacechart -%%PORTDOCS%%@dirrm %%DOCSDIR%% --- spacechart-0.9.4_8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: