Bug 74192 - Generate ports INDEX failed.
Summary: Generate ports INDEX 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: Colin Percival
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-21 10:40 UTC by Joe Horn
Modified: 2004-11-24 14:24 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 Joe Horn 2004-11-21 10:40:50 UTC
Generating INDEX.tmp - please wait.."Makefile", line 26: warning: String comparison operator should be either == or !=
"Makefile", line 26: Malformed conditional (${OSVERSION} > 502113 || (${OSVERSION} > 491100 && ${OSVERSION} < 500000))
"Makefile", line 26: Missing dependency operator
"Makefile", line 28: if-less endif
"Makefile", line 28: Need an operator
make: fatal errors encountered -- cannot continue
===> sysutils/freebsd-sha1 failed
*** Error code 1
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2004-11-21 23:49:06 UTC
State Changed
From-To: open->feedback

Please see if the following patch fixes your problem: 

Index: Makefile 
=================================================================== 
RCS file: /home/FreeBSD/pcvs/ports/sysutils/freebsd-sha1/Makefile,v 
retrieving revision 1.1 
diff -u -r1.1 Makefile 
--- Makefile	25 Oct 2004 18:36:12 -0000	1.1 
+++ Makefile	21 Nov 2004 23:44:30 -0000 
@@ -23,7 +23,7 @@ 

.include <bsd.port.pre.mk> 

-.if ${OSVERSION} > 502113 || (${OSVERSION} > 491100 && ${OSVERSION} < 500000) 
+.if ${OSVERSION} > 502113 || ( ${OSVERSION} > 491100 && ${OSVERSION} < 500000 ) 
IGNORE=		"sha1 now contained in the base system" 
.endif
Comment 2 Volker Stolz freebsd_committer freebsd_triage 2004-11-24 11:24:23 UTC
Responsible Changed
From-To: freebsd-ports-bugs->cpervia

Over to maintainer
Comment 3 Volker Stolz freebsd_committer freebsd_triage 2004-11-24 11:25:42 UTC
Responsible Changed
From-To: cpervia->cperciva

Thick fingers
Comment 4 Colin Percival freebsd_committer freebsd_triage 2004-11-24 14:22:15 UTC
State Changed
From-To: feedback->closed

I think I've fixed this in both sysutils/portsnap and sysutils/freebsd-sha1.