Bug 75508 - ports/cleanfeed install failed
Summary: ports/cleanfeed install failed
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: Yen-Ming Lee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-26 08:00 UTC by atomer
Modified: 2004-12-26 18:35 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description atomer 2004-12-26 08:00:36 UTC
There is something wrong with the Makefile & pkg-install file in /usr/ports/news/cleanfeed.

Fix: 

//============================================================
in Makefile:

post-install:
        ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL

=>
post-install:
        ${SH} ${PKGINSTALL} ${PREFIX} ${PKGNAME} POST-INSTALL

//============================================================
in pkg-install:

PKGNAME=$1
[ ! -n "${PKG_PREFIX}" ] && exit 1

case $2 in

=>
PKG_PREFIX=$1
PKGNAME=$2
[ ! -n "${PKG_PREFIX}" ] && exit 1

case $3 in
How-To-Repeat: just execute "make install", you will exit with signal 1.
Comment 1 Yen-Ming Lee freebsd_committer freebsd_triage 2004-12-26 18:32:32 UTC
State Changed
From-To: open->closed

- correct category to ports. 
- cleanfeed was maintained by me. 
- fix this problem by alternative way. 



Comment 2 Yen-Ming Lee freebsd_committer freebsd_triage 2004-12-26 18:32:32 UTC
Responsible Changed
From-To: freebsd-i386->leeym

- correct category to ports. 
- cleanfeed was maintained by me. 
- fix this problem by alternative way.