Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2012 10:17:51 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309159 - head/lang/seed7
Message-ID:  <201212181017.qBIAHpQn016177@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gahr
Date: Tue Dec 18 10:17:50 2012
New Revision: 309159
URL: http://svnweb.freebsd.org/changeset/ports/309159

Log:
  - Update to 05_20121212
    Changes:
  
    * The Seed7 compiler was renamed. The new name of the Seed7 compiler
      is s7c.
    * Manual, FAQ, read_me files and several example programs were
      updated to use the new name of the Seed7 compiler (s7c).
    * A description of ltrim and rtrim and some links were added to the
      manual.
    * The library make.s7i and the example program make7.sd7 were
      improved to execute make commands with predefined macros.
    * The library makedata.s7i was improved to support dependencies
      which contain a space.
    * The library make.s7i was improved to support the command cp -a.
    * A variant of the function popen, with the parameters 'command' and
      'parameters', was added to shell.s7i.
    * An explanation, why & and <& are defined for string concatenation,
      was added to the FAQ.
    * The program tar7.sd7 was improved to accept also DOS paths for all
      file arguments.
    * Documentation comments were added to progs.s7i and reference.s7i.
    * The files drw_win.c, drw_x11.c and gkb_x11.c were improved to
      exit a program when the close button (X) is pressed.
    * The functions refFile, refLine, refParams and refSetParams in
      ref_data.c were improved to raise RANGE_ERROR, when they are
      called with NULL.
    * The function ref_params in reflib.c was improved to call refParams.
    * The makefiles were improved such that 'make s7c' generates an
      executable of the Seed7 compiler.
    * The makefile mk_mingc.mak, which supports the compilation of the
      self extracting version of Seed7, was improved.
    * The support for the unused action REF_NAME was removed.
  
  - Reorganize installed files structure as per author's request
    (see http://seed7.sourceforge.net/faq.htm#seed7_package)
  
  - Remove article from COMMENT

Modified:
  head/lang/seed7/Makefile
  head/lang/seed7/distinfo
  head/lang/seed7/pkg-plist

Modified: head/lang/seed7/Makefile
==============================================================================
--- head/lang/seed7/Makefile	Tue Dec 18 10:04:42 2012	(r309158)
+++ head/lang/seed7/Makefile	Tue Dec 18 10:17:50 2012	(r309159)
@@ -2,14 +2,14 @@
 # $FreeBSD$
 
 PORTNAME=	seed7
-DISTVERSION=	05_20121125
+DISTVERSION=	05_20121212
 CATEGORIES=	lang
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/
 DISTNAME=	${PORTNAME}_${DISTVERSION}
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	gahr@FreeBSD.org
-COMMENT=	A high-level, extensible programming language
+COMMENT=	High-level, extensible programming language
 
 LICENSE=	LGPL21
 
@@ -20,12 +20,19 @@ ONLY_FOR_ARCHS=	i386 amd64 sparc64
 
 WRKSRC=		${WRKDIR}/${PORTNAME}/src
 MAKEFILE=	makefile
-MAKE_ENV+=	S7_LIB_DIR=${PREFIX}/lib/seed7 \
-		SEED7_LIBRARY=${PREFIX}/lib/seed7 \
+MAKE_ENV+=	S7_LIB_DIR=${S7_LIB_DIR} \
+		SEED7_LIBRARY=${SEED7_LIBRARY} \
 		C_COMPILER=${CC} \
 		CPLUSPLUS_COMPILER=${CPP}
 ALL_TARGET=	depend hi
 
+SEED7_LIBRARY=	${PREFIX}/lib/${PORTNAME}/lib
+S7_LIB_DIR=	${PREFIX}/lib/${PORTNAME}/bin
+S7_LIBS=	s7_comp.a s7_con.a s7_draw.a s7_data.a seed7_05.a
+
+PORTEXAMPLES=	*
+PORTDOCS=	*
+
 .include <bsd.port.pre.mk>
 
 .if ${OSVERSION} < 800000
@@ -37,32 +44,32 @@ post-patch:
 	${REINPLACE_CMD} -i '' -e 's|./hi|${PREFIX}/bin/hi|g' ${WRKSRC}/../prg/chk_all.sd7
 
 do-install:
+#	install interpreter
 	${INSTALL_PROGRAM} ${WRKSRC}/../bin/hi ${PREFIX}/bin
-	${INSTALL} -d ${PREFIX}/lib/${PORTNAME}
-	(cd ${WRKSRC}/../lib && ${COPYTREE_SHARE} \* ${PREFIX}/lib/${PORTNAME})
-	${INSTALL_DATA} ${WRKSRC}/../bin/s7_comp.a ${PREFIX}/lib/${PORTNAME}
-	${INSTALL_DATA} ${WRKSRC}/../bin/s7_con.a ${PREFIX}/lib/${PORTNAME}
-	${INSTALL_DATA} ${WRKSRC}/../bin/s7_draw.a ${PREFIX}/lib/${PORTNAME}
-	${INSTALL_DATA} ${WRKSRC}/../bin/s7_data.a ${PREFIX}/lib/${PORTNAME}
-	${INSTALL_DATA} ${WRKSRC}/../bin/seed7_05.a ${PREFIX}/lib/${PORTNAME}
-
-post-install:
+#	install seed7 library
+	${INSTALL} -d ${SEED7_LIBRARY}
+	cd ${WRKSRC}/../lib && ${COPYTREE_SHARE} '*.s7i' ${SEED7_LIBRARY}
+#	install static libraries
+	${INSTALL} -d ${S7_LIB_DIR}
+.for s7_lib in ${S7_LIBS}
+	${INSTALL_DATA} ${WRKSRC}/../bin/${s7_lib} ${S7_LIB_DIR}
+.endfor
 #	compile the seed7 compiler (needs the libraries to be installed)
-	cd ${WRKSRC}/../prg && ./hi comp -O2 comp
-	${INSTALL_PROGRAM} ${WRKSRC}/../prg/comp ${PREFIX}/bin/hi_comp
-	${RM} ${WRKSRC}/../prg/tmp_comp.c ${WRKSRC}/../prg/comp
+	cd ${WRKSRC} && ${GMAKE} s7c
+	${INSTALL_PROGRAM} ${WRKSRC}/../prg/s7c ${PREFIX}/bin/s7c
+	${RM} ${WRKSRC}/../prg/tmp_s7c.c ${WRKSRC}/../prg/s7c
 #	install PORTDOCS
 .if !defined(NOPORTDOCS)
 	${INSTALL} -d ${DOCSDIR}
-	(cd ${WRKSRC}/../doc && ${COPYTREE_SHARE} \* ${DOCSDIR})
+	cd ${WRKSRC}/../doc && ${COPYTREE_SHARE} \* ${DOCSDIR}
 .endif
 #	install PORTEXAMPLES
 .if !defined(NOPORTEXAMPLES)
 	${INSTALL} -d ${EXAMPLESDIR}
-	(cd ${WRKSRC}/../prg && ${COPYTREE_SHARE} \* ${EXAMPLESDIR})
+	cd ${WRKSRC}/../prg && ${COPYTREE_SHARE} '*.dna *.sd7 *.dat *.s7i' ${EXAMPLESDIR}
 .endif
 
-test: ${INSTALL_TARGET}
+regression-test: install
 	@echo ""
 	@echo "Testing the ${PORTNAME} installation"
 	@(cd ${WRKSRC}/../prg && ${PREFIX}/bin/hi chk_all)

Modified: head/lang/seed7/distinfo
==============================================================================
--- head/lang/seed7/distinfo	Tue Dec 18 10:04:42 2012	(r309158)
+++ head/lang/seed7/distinfo	Tue Dec 18 10:17:50 2012	(r309159)
@@ -1,2 +1,2 @@
-SHA256 (seed7_05_20121125.tgz) = 6d0d0e52e4f1150deefc036d782c5421ed00c20db00309bd4977c664435ba193
-SIZE (seed7_05_20121125.tgz) = 1800530
+SHA256 (seed7_05_20121212.tgz) = d4f23d71e3f86ea81ff404e52a803f644d8fa505cde0da62895941c8ad73c67a
+SIZE (seed7_05_20121212.tgz) = 1801593

Modified: head/lang/seed7/pkg-plist
==============================================================================
--- head/lang/seed7/pkg-plist	Tue Dec 18 10:04:42 2012	(r309158)
+++ head/lang/seed7/pkg-plist	Tue Dec 18 10:17:50 2012	(r309159)
@@ -1,240 +1,124 @@
 bin/hi
-bin/hi_comp
-lib/seed7/COPYING
-lib/seed7/LGPL
-lib/seed7/array.s7i
-lib/seed7/bigfile.s7i
-lib/seed7/bigint.s7i
-lib/seed7/bigrat.s7i
-lib/seed7/binary.s7i
-lib/seed7/bitmapfont.s7i
-lib/seed7/bitset.s7i
-lib/seed7/bitsetof.s7i
-lib/seed7/boolean.s7i
-lib/seed7/bstring.s7i
-lib/seed7/cards.s7i
-lib/seed7/category.s7i
-lib/seed7/cgi.s7i
-lib/seed7/char.s7i
-lib/seed7/charsets.s7i
-lib/seed7/chartype.s7i
-lib/seed7/clib_file.s7i
-lib/seed7/color.s7i
-lib/seed7/complex.s7i
-lib/seed7/console.s7i
-lib/seed7/cronos16.s7i
-lib/seed7/cronos27.s7i
-lib/seed7/dialog.s7i
-lib/seed7/dir.s7i
-lib/seed7/draw.s7i
-lib/seed7/duration.s7i
-lib/seed7/echo.s7i
-lib/seed7/enable_input.s7i
-lib/seed7/enable_io.s7i
-lib/seed7/enable_output.s7i
-lib/seed7/encoding.s7i
-lib/seed7/environment.s7i
-lib/seed7/external_file.s7i
-lib/seed7/field.s7i
-lib/seed7/file.s7i
-lib/seed7/float.s7i
-lib/seed7/font.s7i
-lib/seed7/forloop.s7i
-lib/seed7/ftp.s7i
-lib/seed7/getf.s7i
-lib/seed7/gethttp.s7i
-lib/seed7/graph.s7i
-lib/seed7/graph_file.s7i
-lib/seed7/gtkserver.s7i
-lib/seed7/gzip.s7i
-lib/seed7/hash.s7i
-lib/seed7/hashsetof.s7i
-lib/seed7/html.s7i
-lib/seed7/html_ent.s7i
-lib/seed7/idxarray.s7i
-lib/seed7/image.s7i
-lib/seed7/inifile.s7i
-lib/seed7/integer.s7i
-lib/seed7/keybd.s7i
-lib/seed7/line.s7i
-lib/seed7/listener.s7i
-lib/seed7/lower.s7i
-lib/seed7/mahjng32.s7i
-lib/seed7/make.s7i
-lib/seed7/makedata.s7i
-lib/seed7/math.s7i
-lib/seed7/modern27.s7i
-lib/seed7/more.s7i
-lib/seed7/multiscr.s7i
-lib/seed7/null_file.s7i
-lib/seed7/osfiles.s7i
-lib/seed7/pic16.s7i
-lib/seed7/pic32.s7i
-lib/seed7/pixmap_file.s7i
-lib/seed7/pixmapfont.s7i
-lib/seed7/poll.s7i
-lib/seed7/progs.s7i
-lib/seed7/rational.s7i
-lib/seed7/ref_list.s7i
-lib/seed7/reference.s7i
-lib/seed7/reverse.s7i
-lib/seed7/s7_comp.a
-lib/seed7/s7_con.a
-lib/seed7/s7_data.a
-lib/seed7/s7_draw.a
-lib/seed7/scanfile.s7i
-lib/seed7/scanstri.s7i
-lib/seed7/seed7_05.a
-lib/seed7/seed7_05.s7i
-lib/seed7/set.s7i
-lib/seed7/shell.s7i
-lib/seed7/sockbase.s7i
-lib/seed7/socket.s7i
-lib/seed7/sokoban1.s7i
-lib/seed7/stars.s7i
-lib/seed7/stdfont10.s7i
-lib/seed7/stdfont12.s7i
-lib/seed7/stdfont14.s7i
-lib/seed7/stdfont16.s7i
-lib/seed7/stdfont18.s7i
-lib/seed7/stdfont20.s7i
-lib/seed7/stdfont24.s7i
-lib/seed7/stdio.s7i
-lib/seed7/strifile.s7i
-lib/seed7/string.s7i
-lib/seed7/stritext.s7i
-lib/seed7/struct.s7i
-lib/seed7/subrange.s7i
-lib/seed7/syntax.s7i
-lib/seed7/tar.s7i
-lib/seed7/tee.s7i
-lib/seed7/text.s7i
-lib/seed7/time.s7i
-lib/seed7/upper.s7i
-lib/seed7/utf16.s7i
-lib/seed7/utf8.s7i
-lib/seed7/vecfont10.s7i
-lib/seed7/vecfont18.s7i
-lib/seed7/vectorfont.s7i
-lib/seed7/window.s7i
-lib/seed7/wrinum.s7i
-lib/seed7/xml_ent.s7i
-lib/seed7/xmldom.s7i
-lib/seed7/zip.s7i
-%%PORTDOCS%%%%DOCSDIR%%/chlog.txt
-%%PORTDOCS%%%%DOCSDIR%%/contact.txt
-%%PORTDOCS%%%%DOCSDIR%%/faq.htm
-%%PORTDOCS%%%%DOCSDIR%%/faq.txt
-%%PORTDOCS%%%%DOCSDIR%%/gtksvdoc.css
-%%PORTDOCS%%%%DOCSDIR%%/gtksvdoc.htm
-%%PORTDOCS%%%%DOCSDIR%%/gtksvdoc.txt
-%%PORTDOCS%%%%DOCSDIR%%/install.txt
-%%PORTDOCS%%%%DOCSDIR%%/inter.txt
-%%PORTDOCS%%%%DOCSDIR%%/manual.htm
-%%PORTDOCS%%%%DOCSDIR%%/manual.txt
-%%PORTDOCS%%%%DOCSDIR%%/problems.txt
-%%PORTDOCS%%%%DOCSDIR%%/robodoc.rc
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/COPYING
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/LGPL
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/addup.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bas7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bifurk.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/blue.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/carddemo.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/castle.dat
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/castle.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cellauto.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/celsius.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chk_all.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkbig.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkbool.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkexc.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkflt.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkhent.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkhsh.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkint.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkprc.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkscan.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkset.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/chkstr.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clock.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clock2.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clock3.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cmpfil.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comanche.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/comp.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dirtst.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dirx.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dna_base.s7i
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dnafight.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dragon.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/echo.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eliza.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/err.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fannkuch.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fib.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/files.txt
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fractree.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftp7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpserv.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gcd.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gkbd.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/green.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtksvtst.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hal.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hamu.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hello.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hi
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/indigo.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kbd.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/lander.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mahjong.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/make7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mandelbr.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mind.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ms.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/nicoma.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/orange.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pac.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pairs.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/panic.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/planets.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/prime.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/printpi1.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/printpi2.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/printpi3.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rand.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/red.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rever.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roman.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/savehd7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/self.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shisen.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sl.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/snake.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sokoban.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/startrek.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sydir7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tak.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tan.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tar7.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tch.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testfont.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tet.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tetg.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/toutf8.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tst_cli.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tst_srv.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/violet.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wator.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/white.dna
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wiz.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wordcnt.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wrinum.sd7
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wumpus.sd7
+bin/s7c
+lib/seed7/bin/s7_comp.a
+lib/seed7/bin/s7_con.a
+lib/seed7/bin/s7_data.a
+lib/seed7/bin/s7_draw.a
+lib/seed7/bin/seed7_05.a
+lib/seed7/lib/array.s7i
+lib/seed7/lib/bigfile.s7i
+lib/seed7/lib/bigint.s7i
+lib/seed7/lib/bigrat.s7i
+lib/seed7/lib/binary.s7i
+lib/seed7/lib/bitmapfont.s7i
+lib/seed7/lib/bitset.s7i
+lib/seed7/lib/bitsetof.s7i
+lib/seed7/lib/boolean.s7i
+lib/seed7/lib/bstring.s7i
+lib/seed7/lib/cards.s7i
+lib/seed7/lib/category.s7i
+lib/seed7/lib/cgi.s7i
+lib/seed7/lib/char.s7i
+lib/seed7/lib/charsets.s7i
+lib/seed7/lib/chartype.s7i
+lib/seed7/lib/clib_file.s7i
+lib/seed7/lib/color.s7i
+lib/seed7/lib/complex.s7i
+lib/seed7/lib/console.s7i
+lib/seed7/lib/cronos16.s7i
+lib/seed7/lib/cronos27.s7i
+lib/seed7/lib/dialog.s7i
+lib/seed7/lib/dir.s7i
+lib/seed7/lib/draw.s7i
+lib/seed7/lib/duration.s7i
+lib/seed7/lib/echo.s7i
+lib/seed7/lib/enable_input.s7i
+lib/seed7/lib/enable_io.s7i
+lib/seed7/lib/enable_output.s7i
+lib/seed7/lib/encoding.s7i
+lib/seed7/lib/environment.s7i
+lib/seed7/lib/external_file.s7i
+lib/seed7/lib/field.s7i
+lib/seed7/lib/file.s7i
+lib/seed7/lib/float.s7i
+lib/seed7/lib/font.s7i
+lib/seed7/lib/forloop.s7i
+lib/seed7/lib/ftp.s7i
+lib/seed7/lib/getf.s7i
+lib/seed7/lib/gethttp.s7i
+lib/seed7/lib/graph.s7i
+lib/seed7/lib/graph_file.s7i
+lib/seed7/lib/gtkserver.s7i
+lib/seed7/lib/gzip.s7i
+lib/seed7/lib/hash.s7i
+lib/seed7/lib/hashsetof.s7i
+lib/seed7/lib/html.s7i
+lib/seed7/lib/html_ent.s7i
+lib/seed7/lib/idxarray.s7i
+lib/seed7/lib/image.s7i
+lib/seed7/lib/inifile.s7i
+lib/seed7/lib/integer.s7i
+lib/seed7/lib/keybd.s7i
+lib/seed7/lib/line.s7i
+lib/seed7/lib/listener.s7i
+lib/seed7/lib/lower.s7i
+lib/seed7/lib/mahjng32.s7i
+lib/seed7/lib/make.s7i
+lib/seed7/lib/makedata.s7i
+lib/seed7/lib/math.s7i
+lib/seed7/lib/modern27.s7i
+lib/seed7/lib/more.s7i
+lib/seed7/lib/multiscr.s7i
+lib/seed7/lib/null_file.s7i
+lib/seed7/lib/osfiles.s7i
+lib/seed7/lib/pic16.s7i
+lib/seed7/lib/pic32.s7i
+lib/seed7/lib/pixmap_file.s7i
+lib/seed7/lib/pixmapfont.s7i
+lib/seed7/lib/poll.s7i
+lib/seed7/lib/progs.s7i
+lib/seed7/lib/rational.s7i
+lib/seed7/lib/ref_list.s7i
+lib/seed7/lib/reference.s7i
+lib/seed7/lib/reverse.s7i
+lib/seed7/lib/scanfile.s7i
+lib/seed7/lib/scanstri.s7i
+lib/seed7/lib/seed7_05.s7i
+lib/seed7/lib/set.s7i
+lib/seed7/lib/shell.s7i
+lib/seed7/lib/sockbase.s7i
+lib/seed7/lib/socket.s7i
+lib/seed7/lib/sokoban1.s7i
+lib/seed7/lib/stars.s7i
+lib/seed7/lib/stdfont10.s7i
+lib/seed7/lib/stdfont12.s7i
+lib/seed7/lib/stdfont14.s7i
+lib/seed7/lib/stdfont16.s7i
+lib/seed7/lib/stdfont18.s7i
+lib/seed7/lib/stdfont20.s7i
+lib/seed7/lib/stdfont24.s7i
+lib/seed7/lib/stdio.s7i
+lib/seed7/lib/strifile.s7i
+lib/seed7/lib/string.s7i
+lib/seed7/lib/stritext.s7i
+lib/seed7/lib/struct.s7i
+lib/seed7/lib/subrange.s7i
+lib/seed7/lib/syntax.s7i
+lib/seed7/lib/tar.s7i
+lib/seed7/lib/tee.s7i
+lib/seed7/lib/text.s7i
+lib/seed7/lib/time.s7i
+lib/seed7/lib/upper.s7i
+lib/seed7/lib/utf16.s7i
+lib/seed7/lib/utf8.s7i
+lib/seed7/lib/vecfont10.s7i
+lib/seed7/lib/vecfont18.s7i
+lib/seed7/lib/vectorfont.s7i
+lib/seed7/lib/window.s7i
+lib/seed7/lib/wrinum.s7i
+lib/seed7/lib/xml_ent.s7i
+lib/seed7/lib/xmldom.s7i
+lib/seed7/lib/zip.s7i
+@dirrm lib/seed7/lib
+@dirrm lib/seed7/bin
 @dirrm lib/seed7
-%%PORTDOCS%%@dirrm %%DOCSDIR%%
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%



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