Bug 75787 - [maintainer-update] math/coq : fix pkg-plist
Summary: [maintainer-update] math/coq : fix pkg-plist
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Volker Stolz
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-04 10:50 UTC by Rene Ladan
Modified: 2005-01-18 16:44 UTC (History)
0 users

See Also:


Attachments
file.diff (438 bytes, patch)
2005-01-04 10:50 UTC, Rene Ladan
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Rene Ladan 2005-01-04 10:50:12 UTC
pointyhat listed some shared directories which must be @dirrm'd too

How-To-Repeat: apply patch
Comment 1 Volker Stolz freebsd_committer freebsd_triage 2005-01-18 12:51:03 UTC
State Changed
From-To: open->feedback

Since LaTeX will generally still be around ITYM: 
+@unexec rmdir %D/share/texmf/tex/latex/misc 2>/dev/null || true 
+@unexec rmdir %D/share/texmf/tex/latex 2>/dev/null || true 
+@unexec rmdir %D/share/texmf/tex 2>/dev/null || true 
+@unexec rmdir %D/share/texmf 2>/dev/null || true 

Is this okay? Another suggestion to save some logic: 
--- Makefile    20 Dec 2004 21:37:52 -0000      1.4 
+++ Makefile    18 Jan 2005 12:53:28 -0000 
@@ -29,6 +29,8 @@ 

ALL_TARGET=    world 

+PORTDOCS=      CHANGES COPYRIGHT CREDITS INSTALL LICENSE README 
+ 
.include <bsd.port.pre.mk> 

.if ${ARCH} == "ia64" 
@@ -50,7 +52,7 @@ 
post-install: 
.if !defined(NOPORTDOCS) 
-@${MKDIR} ${DOCSDIR} 
-.for i in CHANGES COPYRIGHT CREDITS INSTALL LICENSE README 
+.for i in ${PORTDOCS} 
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} 
.endfor 
.endif 

This means you could remove the %%PORTDOCS%%-lines entirely from pkg-plist... 


Comment 2 Volker Stolz freebsd_committer freebsd_triage 2005-01-18 12:51:03 UTC
Responsible Changed
From-To: freebsd-ports-bugs->vs

I'll track this
Comment 3 Volker Stolz freebsd_committer freebsd_triage 2005-01-18 16:44:36 UTC
State Changed
From-To: feedback->closed

Committed with modifications as discussed, thanks!