Sat Feb 8 23:39:55 2014 UTC ()
Add network libs on SunOS


(wiedi)
diff -r1.24 -r1.25 pkgsrc/lang/scm/Makefile

cvs diff -r1.24 -r1.25 pkgsrc/lang/scm/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/scm/Makefile 2013/07/15 02:02:24 1.24
+++ pkgsrc/lang/scm/Makefile 2014/02/08 23:39:55 1.25
@@ -1,38 +1,40 @@ @@ -1,38 +1,40 @@
1# $NetBSD: Makefile,v 1.24 2013/07/15 02:02:24 ryoon Exp $ 1# $NetBSD: Makefile,v 1.25 2014/02/08 23:39:55 wiedi Exp $
2# 2#
3# Convert the version number as follows 2d2 -> 2.4.2, where the d is 3# Convert the version number as follows 2d2 -> 2.4.2, where the d is
4# changed to a 4, representing the 4th letter. 4# changed to a 4, representing the 4th letter.
5# Thus, 5e3 -> 5.5.3 5# Thus, 5e3 -> 5.5.3
6# 6#
7# Do not forget to update InitXXX.scm in files/buildscm.scm 7# Do not forget to update InitXXX.scm in files/buildscm.scm
8 8
9DISTNAME= scm5e3 9DISTNAME= scm5e3
10PKGNAME= scm-5.5.3 10PKGNAME= scm-5.5.3
11PKGREVISION= 2 11PKGREVISION= 2
12CATEGORIES= lang 12CATEGORIES= lang
13MASTER_SITES= http://swissnet.ai.mit.edu/ftpdir/scm/ 13MASTER_SITES= http://swissnet.ai.mit.edu/ftpdir/scm/
14EXTRACT_SUFX= .zip 14EXTRACT_SUFX= .zip
15 15
16MAINTAINER= pkgsrc-users@NetBSD.org 16MAINTAINER= pkgsrc-users@NetBSD.org
17HOMEPAGE= http://www.swiss.ai.mit.edu/~jaffer/SCM 17HOMEPAGE= http://www.swiss.ai.mit.edu/~jaffer/SCM
18COMMENT= Portable scheme interpreter 18COMMENT= Portable scheme interpreter
19 19
20DEPENDS+= slib>=3.1.1:../../devel/slib 20DEPENDS+= slib>=3.1.1:../../devel/slib
21 21
22WRKSRC= ${WRKDIR}/scm 22WRKSRC= ${WRKDIR}/scm
23EVAL_PREFIX+= SLIB_PREFIX=slib 23EVAL_PREFIX+= SLIB_PREFIX=slib
24INFO_FILES= yes 24INFO_FILES= yes
25 25
 26LDFLAGS.SunOS+= -lsocket -lnsl
 27
26SCM_MODULES+= sc2 ramap dynl edline gsubr ioext posix record rgx socket 28SCM_MODULES+= sc2 ramap dynl edline gsubr ioext posix record rgx socket
27SCM_MODULES+= unix continue scm scmmain findexec script time repl scl eval 29SCM_MODULES+= unix continue scm scmmain findexec script time repl scl eval
28SCM_MODULES+= sys subr debug unif rope unexelf 30SCM_MODULES+= sys subr debug unif rope unexelf
29COMPILED_INITS+=init_edline 31COMPILED_INITS+=init_edline
30 32
31.include "options.mk" 33.include "options.mk"
32 34
33SRCS= ${SCM_MODULES:=.c} 35SRCS= ${SCM_MODULES:=.c}
34OBJS= ${SCM_MODULES:=.o} 36OBJS= ${SCM_MODULES:=.o}
35 37
36BUILD_TARGET= scmlit libscm.a 38BUILD_TARGET= scmlit libscm.a
37INSTALL_TARGET= install installlib 39INSTALL_TARGET= install installlib
38 40