mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
9335300694
as -o asm.o asm.s . ../paths.sh; cc -g -o cstest cstest.o asm.o $LIBM $LIBC cstest.o: In function `dotest': /usr/ports/lang/sr/work/csw/cstest.c(.text+0x1ac): undefined reference to `sr_chg_context' cstest.o: In function `spawn': /usr/ports/lang/sr/work/csw/cstest.c(.text+0x287): undefined reference to `sr_build_context' cstest.o: In function `foo': /usr/ports/lang/sr/work/csw/cstest.c(.text+0x2b3): undefined reference to `sr_check_stk'
41 lines
1002 B
Makefile
41 lines
1002 B
Makefile
# New ports collection makefile for: sr
|
|
# Version required: 2.3.1
|
|
# Date created: 2 Jun 1997
|
|
# Whom: Ruslan Shevchenko <rssh@satori.ipri.kiev.ua>
|
|
#
|
|
# $Id: Makefile,v 1.3 1997/06/29 09:29:03 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= sr
|
|
PKGNAME= sr-2.3.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.cs.arizona.edu/sr/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
MAINTAINER= rssh@cki.ipri.kiev.ua
|
|
|
|
BROKEN_ELF= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= prefix
|
|
NO_WRKSUBDIR= yes
|
|
MAN1 = sr.1 srl.1 srm.1 srprof.1 srtex.1 srlatex.1 srgrind.1 \
|
|
ccr2sr.1 m2sr.1 csp2sr.1
|
|
MAN3 = sranimator.3 srgetopt.3 srwin.3
|
|
MAN5 = srmap.5 srtrace.5
|
|
|
|
pre-install:
|
|
@${MKDIR} ${PREFIX}/lib/sr
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/sr/notes
|
|
${MKDIR} ${PREFIX}/share/doc/sr/ps
|
|
${INSTALL_DATA} ${WRKSRC}/notes/* ${PREFIX}/share/doc/sr/notes
|
|
${INSTALL_DATA} ${WRKSRC}/ps/* ${PREFIX}/share/doc/sr/ps
|
|
${MKDIR} ${PREFIX}/share/examples/sr
|
|
${CP} -pR ${WRKSRC}/examples/* ${PREFIX}/share/examples/sr
|
|
.endif
|
|
|
|
.include<bsd.port.mk>
|