Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Apr 1997 07:00:01 -0700 (PDT)
From:      "Eric J. Schwertfeger" <ejs@bfd.com>
To:        questions@freebsd.org
Subject:   Make questions
Message-ID:  <Pine.BSF.3.95.970423065006.12266A-100000@harlie.bfd.com>

next in thread | raw e-mail | index | archive | help
I'm almost done with my first port, but not knowing Makefiles well is
proving to be a disadvantage :-)  Here's the errors and the Makefile.
Basically, every external binary I try to run generates a "Need an
operator message.  I suspect this is something I did wrong above the
post-install rule, So I'm including the entire Makefile.

"Makefile", line31: Need an operator 
"Makefile", line 32: Need an operator
"Makefile", line 36: Need an operator
"Makefile", line 37: Need an operator
"Makefile", line 38: Need an operator
"Makefile", line 40: Need an operator
"Makefile", line 42: Need an operator
"Makefile", line 43: Need an operator
"Makefile", line 46: Need an operator
"Makefile", line 47: Need an operator
"Makefile", line 48: Need an operator
"Makefile", line 49: Need an operator
"Makefile", line 50: Need an operator
"Makefile", line 51: Need an operator
Fatal errors encountered -- cannot continue

# New ports collection makefile for:    Jed text editor
# Version required:     0.98-4
# Date created:         22 APR 1997
# Whom:                 eric
#
# $Id: Makefile,v 1.9 1997/01/28 08:26:08 ache Exp $
#

DISTNAME=       jed0.98-4
PKGNAME=        jed-0.98-4
CATEGORIES=     editors
MASTER_SITES=   ftp://space.mit.edu/pub/davis/jed/

PATCHFILES=    BUGS
PATCH_SITES=   ftp://space.mit.edu/pub/davis/jed/
PATCH_DIST_STRIP= -p1

MAINTAINER=     eric@cybernut.com

LIB_DEPENDS=    slang\\.0\\.993[6-8]:${PORTSDIR}/devel/libslang

# uncomment the next line to additionally install the x version of JED.
#XJED=  xjed

GNU_CONFIGURE=  yes
ALL_TARGET=     all getmail ${XJED}
INSTALL_TARGET= install
WRKSRC=         ${WRKDIR}/jed

post-install:
    /usr/bin/strip ${PREFIX}/bin/jed
    /usr/bin/strip ${PREFIX}/bin/rgrep
.if defined(XJED)
    /usr/bin/strip ${PREFIX}/bin/xjed
.endif
    mkdir -p ${PREFIX}/lib/jed/lib
    mkdir -p ${PREFIX}/lib/jed/bin
    cp ${WRKSRC}/lib ${PREFIX}/lib/jed/lib
# This shouldn't assume JED's ${OBJ} is ${WRKSRC}/src/obj
    cp ${WRKSRC}/src/obj/rmail ${PREFIX}/lib/jed/lib
.if !defined(NOMANCOMPRESS)
    gzip -9nf ${PREFIX}/man/man1/jed.1
    gzip -9nf ${PREFIX}/man/man1/rgrep.1
.endif
.if !defined(NOPORTDOCS)
    mkdir -p ${PREFIX}/share/doc/jed
    cp ${WRKSRC}/doc/README ${PREFIX}/share/doc/jed
    cp ${WRKSRC}/doc/*.txt ${PREFIX}/share/doc/jed
    cp ${WRKSRC}/info/jed.* ${PREFIX}/info
    cp ${WRKSRC}/info/info.info ${PREFIX}/share/doc/jed
    cp ${WRKSRC}/info/dir.info ${PREFIX}/share/doc/jed
.endif
.include <bsd.port.mk>




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.3.95.970423065006.12266A-100000>