Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 26 Dec 2004 07:53:53 GMT
From:      atomer <atomer@gmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   i386/75508: ports/cleanfeed install failed
Message-ID:  <200412260753.iBQ7rrAv042003@www.freebsd.org>
Resent-Message-ID: <200412260800.iBQ80aQb003416@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         75508
>Category:       i386
>Synopsis:       ports/cleanfeed install failed
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-i386
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Dec 26 08:00:36 GMT 2004
>Closed-Date:
>Last-Modified:
>Originator:     atomer
>Release:        4.10-RELEASE-p5
>Organization:
csie.ncu.edu.tw
>Environment:
FreeBSD news71.csie.ncu.edu.tw 4.10-RELEASE-p5 FreeBSD 4.10-RELEASE-p5 #0: Fri Dec 10 22:38:27 CST 2004     root@news71.csie.ncu.edu.tw:/usr/obj/usr/src/sys/GENERIC  i386

>Description:
There is something wrong with the Makefile & pkg-install file in /usr/ports/news/cleanfeed.
>How-To-Repeat:
just execute "make install", you will exit with signal 1.
>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


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200412260753.iBQ7rrAv042003>