Bug 14452

Summary: Cyrus IMAP port leaves behind directories after deinstall.
Product: Ports & Packages Reporter: jagapen <jagapen>
Component: Individual Port(s)Assignee: freebsd-ports (Nobody) <ports>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description jagapen 1999-10-21 23:20:01 UTC
A missing stdio re-direction in the Makefile for mail/cyrus means that a couple of @dirrm statements don't make it into the installed port's packing list.  Upon de-installation, the ${PREFIX}/share/doc/cyrus directory gets left behind.

Fix: 

62,63c62,63
<		@${ECHO} "@dirrm share/doc/cyrus/html"
<		@${ECHO} "@dirrm share/doc/cyrus"
---
>		@${ECHO} "@dirrm share/doc/cyrus/html" >>${TMPPLIST}
>		@${ECHO} "@dirrm share/doc/cyrus" >>${TMPPLIST}
How-To-Repeat: Install and deinstall the Cyrus IMAP port.
Comment 1 Steve Price freebsd_committer freebsd_triage 1999-11-26 18:18:24 UTC
State Changed
From-To: open->closed

Committed, thanks!