From root@yokota-s.otaru-uc.ac.jp  Thu Apr 23 09:57:28 2009
Return-Path: <root@yokota-s.otaru-uc.ac.jp>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 016DE106566B
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 23 Apr 2009 09:57:28 +0000 (UTC)
	(envelope-from root@yokota-s.otaru-uc.ac.jp)
Received: from ca1.otaru-uc.ac.jp (ca1.otaru-uc.ac.jp [150.83.48.27])
	by mx1.freebsd.org (Postfix) with ESMTP id BB6228FC12
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 23 Apr 2009 09:57:26 +0000 (UTC)
	(envelope-from root@yokota-s.otaru-uc.ac.jp)
Received: from canal1.otaru-uc.ac.jp (canal1 [150.83.48.23])
	by ca1.otaru-uc.ac.jp (Postfix) with ESMTP id 1FC44E1D4A
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 23 Apr 2009 18:57:25 +0900 (JST)
Received: from room520-1.yokota-s.otaru-uc.ac.jp (room520-1.yokota-s.otaru-uc.ac.jp [150.83.100.4])
        by canal1.otaru-uc.ac.jp (SMTP) with ESMTP id n3N9vOFD015192;
        Thu, 23 Apr 2009 18:57:24 +0900 (JST)
Received: by room520-1.yokota-s.otaru-uc.ac.jp (Postfix, from userid 0)
	id 86B293982A; Thu, 23 Apr 2009 18:58:15 +0900 (JST)
Message-Id: <20090423095815.86B293982A@room520-1.yokota-s.otaru-uc.ac.jp>
Date: Thu, 23 Apr 2009 18:58:15 +0900 (JST)
From: Koji Yokota <uji@room520-1.yokota-s.otaru-uc.ac.jp>
To: FreeBSD-gnats-submit@freebsd.org
Cc: yokota@res.otaru-uc.ac.jp
Subject: [PATCH] print/latex-prettyref: [SUMMARIZE CHANGES]
X-Send-Pr-Version: 3.113
X-GNATS-Notify: yokota@res.otaru-uc.ac.jp

>Number:         133944
>Category:       ports
>Synopsis:       [PATCH] print/latex-prettyref: [SUMMARIZE CHANGES]
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    pgollucci
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Apr 23 10:00:01 UTC 2009
>Closed-Date:    Tue Jun 16 04:16:26 UTC 2009
>Last-Modified:  Tue Jun 16 04:20:02 UTC 2009
>Originator:     Koji Yokota
>Release:        FreeBSD 7.1-RELEASE-p4 i386
>Organization:
Otaru University of Commerce
>Environment:
System: FreeBSD hoge.otaru-uc.ac.jp 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #7: Mon Apr  6 02:22:47 JST
>Description:
[DESCRIBE CHANGES]
- Correcting wrong permission set by the current port on the installation
  directory.
- Small fixes.

Port maintainer (yokota@res.otaru-uc.ac.jp) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- latex-prettyref-3.0_1.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/print/latex-prettyref.orig/Makefile /usr/ports/print/latex-prettyref/Makefile
--- /usr/ports/print/latex-prettyref.orig/Makefile	2007-12-19 01:43:24.000000000 +0900
+++ /usr/ports/print/latex-prettyref/Makefile	2009-04-23 18:46:41.000000000 +0900
@@ -7,6 +7,7 @@
 
 PORTNAME=	latex-prettyref
 PORTVERSION=	3.0
+PORTREVISION=	1
 CATEGORIES=	print
 MASTER_SITES=	${MASTER_SITE_TEX_CTAN}
 MASTER_SITE_SUBDIR=	macros/latex/contrib
@@ -20,23 +21,26 @@
 RUN_DEPENDS=	latex:${PORTSDIR}/print/teTeX-base
 
 USE_ZIP=	yes
+PLIST_SUB=	MKTEXLSR=${MKTEXLSR}
 
-TEXMFDIR=	share/texmf
-STYDIR=		tex/latex/${PORTNAME:S/^latex-//}
-DOCSDIR=	doc/latex/${PORTNAME:S/^latex-//}
+TEXMFDIR?=	share/texmf
+STYDIR?=		tex/latex/${PORTNAME:S/^latex-//}
+DOCSDIR?=	doc/latex/${PORTNAME:S/^latex-//}
 INSFILE=	${PORTNAME:S/^latex-//}.ins
 STYFILE=	${PORTNAME:S/^latex-//}.sty
 PDFFILE=	${PORTNAME:S/^latex-//}.pdf
-MKTEXLSR=	${LOCALBASE}/bin/mktexlsr
+MKTEXLSR?=	${LOCALBASE}/bin/mktexlsr
 
 do-build:
 	@( cd ${WRKSRC} && tex ${INSFILE} )
 
 do-install:
 	@( cd ${WRKSRC} && \
+	  ${MKDIR} ${PREFIX}/${TEXMFDIR}/${STYDIR} && \
 	  ${COPYTREE_SHARE} "${STYFILE}" ${PREFIX}/${TEXMFDIR}/${STYDIR} )
 .if !defined(NOPORTDOCS)
 	@( cd ${WRKSRC} && \
+	  ${MKDIR} ${PREFIX}/${TEXMFDIR}/${DOCSDIR} && \
 	  ${COPYTREE_SHARE} "${PDFFILE}" ${PREFIX}/${TEXMFDIR}/${DOCSDIR} )
 .endif
 
diff -ruN --exclude=CVS /usr/ports/print/latex-prettyref.orig/pkg-plist /usr/ports/print/latex-prettyref/pkg-plist
--- /usr/ports/print/latex-prettyref.orig/pkg-plist	2007-12-19 01:43:24.000000000 +0900
+++ /usr/ports/print/latex-prettyref/pkg-plist	2009-04-23 18:47:00.000000000 +0900
@@ -2,3 +2,4 @@
 share/texmf/tex/latex/prettyref/prettyref.sty
 %%PORTDOCS%%@dirrm share/texmf/doc/latex/prettyref
 @dirrm share/texmf/tex/latex/prettyref
+@unexec %%MKTEXLSR%%
--- latex-prettyref-3.0_1.patch ends here ---

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Apr 23 10:00:18 UTC 2009 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=133944 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: yokota@res.otaru-uc.ac.jp
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/133944: [PATCH] print/latex-prettyref: [SUMMARIZE CHANGES]
Date: Thu, 23 Apr 2009 10:00:17 UT

 Maintainer of print/latex-prettyref,
 
 Please note that PR ports/133944 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/133944
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: Koji Yokota <yokota@res.otaru-uc.ac.jp>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/133944: [PATCH] print/latex-prettyref: [SUMMARIZE CHANGES]
Date: Sat, 25 Apr 2009 02:37:17 +0900

 I approve this patch.
 
 Edwin Groothuis $B$5$s$O=q$-$^$7$?(B:
 > Maintainer of print/latex-prettyref,
 > 
 > Please note that PR ports/133944 has just been submitted.
 > 
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 > 
 > The full text of the PR can be found at:
 >     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/133944
 > 
 
State-Changed-From-To: feedback->open 
State-Changed-By: pgollucci 
State-Changed-When: Fri Jun 12 03:46:06 UTC 2009 
State-Changed-Why:  
feedback received 


Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci 
Responsible-Changed-By: pgollucci 
Responsible-Changed-When: Fri Jun 12 03:46:06 UTC 2009 
Responsible-Changed-Why:  
feedback received 

http://www.freebsd.org/cgi/query-pr.cgi?pr=133944 
State-Changed-From-To: open->closed 
State-Changed-By: pgollucci 
State-Changed-When: Tue Jun 16 04:16:25 UTC 2009 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=133944 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/133944: commit references a PR
Date: Tue, 16 Jun 2009 04:16:24 +0000 (UTC)

 pgollucci    2009-06-16 04:16:14 UTC
 
   FreeBSD ports repository
 
   Modified files:
     print/latex-prettyref Makefile pkg-plist 
   Log:
   - Correcting wrong permission set by the current port on the installation
       directory.
   - Other Small fixes.
   
   PR:             ports/133944
   Approved by:    maintainer
   Submitted by:   Koji Yokota <uji@room520-1.yokota-s.otaru-uc.ac.jp>
   
   Revision  Changes    Path
   1.2       +8 -4      ports/print/latex-prettyref/Makefile
   1.2       +1 -0      ports/print/latex-prettyref/pkg-plist
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
