Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 May 2013 15:22:43 +0900 (JST)
From:      Hiroto Kagotani <hiroto.kagotani@gmail.com>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/178783: [NEW PORT] misc/auto-multiple-choice: Multiple Choice Questionnaires management with automated marking
Message-ID:  <201305200622.r4K6Mh17062184@serv52.infsys.cne.okayama-u.ac.jp>
Resent-Message-ID: <201305200640.r4K6e0DB019134@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         178783
>Category:       ports
>Synopsis:       [NEW PORT] misc/auto-multiple-choice: Multiple Choice Questionnaires management with automated marking
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 20 06:40:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Hiroto Kagotani
>Release:        FreeBSD 9.1-RELEASE amd64
>Organization:
>Environment:
System: FreeBSD myhost.mydomain 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10
>Description:
Auto Multiple Choice (AMC) is a piece of software that helps you to
create and manage multiple choice questionnaires, with automated
marking.  Tests can be written in plain text or LaTeX.  Automated
correction and grading is performed from scans of the answer sheets
using optical mark recognition.

WWW: http://home.gna.org/auto-qcm/

Generated with FreeBSD Port Tools 0.99_7 (mode: new)
>How-To-Repeat:
>Fix:

--- .shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	auto-multiple-choice
#	auto-multiple-choice/files
#	auto-multiple-choice/files/patch-Makefile
#	auto-multiple-choice/files/patch-Makefile.conf
#	auto-multiple-choice/files/patch-AMC-perl__AMC__Gui__Commande.pm
#	auto-multiple-choice/files/patch-AMC-perl__AMC__Filter__plain.pm
#	auto-multiple-choice/files/patch-AMC-gui-edit_preferences.glade
#	auto-multiple-choice/distinfo
#	auto-multiple-choice/pkg-descr
#	auto-multiple-choice/Makefile
#	auto-multiple-choice/pkg-plist
#	auto-multiple-choice/pkg-message
#
echo c - auto-multiple-choice
mkdir -p auto-multiple-choice > /dev/null 2>&1
echo c - auto-multiple-choice/files
mkdir -p auto-multiple-choice/files > /dev/null 2>&1
echo x - auto-multiple-choice/files/patch-Makefile
sed 's/^X//' >auto-multiple-choice/files/patch-Makefile << '71a4bd7c1efbb07ab3406a1bf7c53118'
X--- ./Makefile.orig	2012-06-15 17:10:28.000000000 +0900
X+++ ./Makefile	2013-05-20 15:00:06.000000000 +0900
X@@ -51,7 +51,7 @@
X # try to find right names for OpenCV libs 
X 
X ifeq ($(GCC_OPENCV_LIBS),auto)
X-ifeq ($(shell echo 'main(){}' | gcc -xc -lopencv_core - -o /dev/null 2>/dev/null && echo "OK"),OK)
X+ifeq ($(shell echo 'main(){}' | gcc -xc $(LDFLAGS) -lopencv_core - -o /dev/null 2>/dev/null && echo "OK"),OK)
X   GCC_OPENCV_LIBS:=-lopencv_core -lopencv_highgui -lopencv_imgproc
X else
X   GCC_OPENCV_LIBS:=-lcv -lhighgui -lcxcore
X@@ -209,7 +209,7 @@
X endif
X ifneq ($(DESKTOPDIR),)
X 	install -d -m 0755 $(USER_GROUP) $(DESTDIR)/$(DESKTOPDIR)
X-	install    -m 0644 $(USER_GROUP) -T auto-multiple-choice.desktop $(DESTDIR)/$(DESKTOPDIR)/auto-multiple-choice.desktop
X+	install    -m 0644 $(USER_GROUP) auto-multiple-choice.desktop $(DESTDIR)/$(DESKTOPDIR)/auto-multiple-choice.desktop
X endif
X 	install -d -m 0755 $(USER_GROUP) $(DESTDIR)/$(BINDIR)
X 	install    -m 0755 $(USER_GROUP) auto-multiple-choice $(DESTDIR)/$(BINDIR)
X@@ -217,7 +217,7 @@
X 	install    -m 0644 $(USER_GROUP) icons/*.svg $(DESTDIR)/$(ICONSDIR)
X ifneq ($(PIXDIR),)
X 	install -d -m 0755 $(USER_GROUP) $(DESTDIR)/$(PIXDIR)
X-	install    -m 0644 $(USER_GROUP) -T $(MAIN_LOGO).xpm $(DESTDIR)/$(PIXDIR)/auto-multiple-choice.xpm
X+	install    -m 0644 $(USER_GROUP) $(MAIN_LOGO).xpm $(DESTDIR)/$(PIXDIR)/auto-multiple-choice.xpm
X endif
X 	install -d -m 0755 $(USER_GROUP) $(DESTDIR)/$(PERLDIR)/AMC
X 	install -d -m 0755 $(USER_GROUP) $(DESTDIR)/$(PERLDIR)/AMC/Export
X@@ -247,7 +247,20 @@
X 	chgrp -hR $(INSTALL_GROUP) $(DESTDIR)/$(DOCDIR)
X endif
X 	install -d -m 0755 $(USER_GROUP) $(DESTDIR)/$(MAN1DIR)
X-	install    -m 0644 $(USER_GROUP) doc/*.1 $(DESTDIR)/$(MAN1DIR)
X+	for f in doc/AMC-*.1; do \
X+	  case $$f in \
X+	    *.??.1) ;; \
X+	    *) install    -m 0644 $(USER_GROUP) $$f $(DESTDIR)/$(MAN1DIR) ;; \
X+	  esac; \
X+	done
X+	install    -m 0644 $(USER_GROUP) doc/auto-multiple-choice.1 $(DESTDIR)/$(MAN1DIR)
X+	mkdir -p $(DESTDIR)/$(FRMAN1DIR)
X+	install    -m 0644 $(USER_GROUP) doc/auto-multiple-choice.fr.1 $(DESTDIR)/$(FRMAN1DIR)/auto-multiple-choice.1
X+	mkdir -p $(DESTDIR)/$(JAMAN1DIR)
X+	for f in doc/AMC-*.ja.1; do \
X+	  iconv -f UTF-8 -t EUC-JP < $$f > $(DESTDIR)/$(JAMAN1DIR)/`expr $$f : 'doc/\(AMC-.*\).ja.1'`.1; \
X+	done
X+	iconv -f UTF-8 -t EUC-JP < doc/auto-multiple-choice.ja.1 > $(DESTDIR)/$(JAMAN1DIR)/auto-multiple-choice.1
X endif
X 
X # Test
71a4bd7c1efbb07ab3406a1bf7c53118
echo x - auto-multiple-choice/files/patch-Makefile.conf
sed 's/^X//' >auto-multiple-choice/files/patch-Makefile.conf << 'd5fa262213b1769391cd35b3e37be827'
X--- ./Makefile.conf.orig	2012-06-08 18:10:39.000000000 +0900
X+++ ./Makefile.conf	2013-05-20 15:00:53.000000000 +0900
X@@ -31,51 +31,57 @@
X # INSTALLATION : where to install parts of the package ?
X 
X # directory for executable
X-BINDIR=/usr/bin
X+BINDIR=%%PREFIX%%/bin
X # directory for perl modules
X-PERLDIR=/usr/share/perl5
X+PERLDIR=%%SITE_PERL%%
X # directory for some AMC executables, not to be used by end-user
X-MODSDIR=/usr/lib/AMC
X+MODSDIR=%%PREFIX%%/lib/AMC
X # directory for LaTeX style file
X-TEXDIR=/usr/share/texmf/tex/latex/AMC
X+TEXDIR=%%PREFIX%%/share/texmf-local/tex/latex/AMC
X # directory for LaTeX doc
X-TEXDOCDIR=/usr/share/doc/texmf/AMC/
X+TEXDOCDIR=%%PREFIX%%/share/texmf-local/doc/latex/AMC/
X # directory for man (1) files
X-MAN1DIR=/usr/share/man/man1
X+MAN1DIR=%%PREFIX%%/man/man1
X+FRMAN1DIR=%%PREFIX%%/man/fr/man1
X+JAMAN1DIR=%%PREFIX%%/man/ja/man1
X # directory for desktop file 
X-DESKTOPDIR=/usr/share/applications
X+DESKTOPDIR=%%PREFIX%%/share/applications
X # directory for icons (svg)
X-ICONSDIR=/usr/share/auto-multiple-choice/icons
X+ICONSDIR=%%DATADIR%%/icons
X # directory for icons (xpm)
X-PIXDIR=/usr/share/pixmaps
X+PIXDIR=%%PREFIX%%/share/pixmaps
X # directory for locales (MO files will be put in
X #                        $(LOCALEDIR)/fr/LC_MESSAGES for example)
X-LOCALEDIR=/usr/share/locale
X+LOCALEDIR=%%PREFIX%%/share/locale
X # directory for AMC packaged models
X-MODELSDIR=/usr/share/auto-multiple-choice/models
X+MODELSDIR=%%DATADIR%%/models
X # directory for documentation (will use html/auto-multiple-choice.* subdirs for HTML docs)
X-DOCDIR=/usr/share/doc/auto-multiple-choice-doc
X+DOCDIR=%%DOCSDIR%%
X 
X # directory for Shared MIME-info Database
X-SHARED_MIMEINFO_DIR=/usr/share/mime/packages
X+SHARED_MIMEINFO_DIR=%%SHARED_MIMEINFO_DIR%%
X # directory for gtksourceview/gedit languages highlighting syntax
X-LANG_GTKSOURCEVIEW_DIR=/usr/share/gtksourceview-3.0/language-specs
X+LANG_GTKSOURCEVIEW_DIR=%%LANG_GTKSOURCEVIEW_DIR%%
X 
X # BUILD : where to find some files used for building AMC ?
X # URLs can be used if XML catalogs are present.
X 
X-#DOCBOOK_MAN_XSL=/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl
X+#DOCBOOK_MAN_XSL=%%LOCALBASE%%/share/xsl/docbook/manpages/docbook.xsl
X DOCBOOK_MAN_XSL=http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
X-#DOCBOOK_XHTML_XSL=/usr/share/xml/docbook/stylesheet/nwalsh/xhtml/chunk.xsl
X+#DOCBOOK_XHTML_XSL=%%LOCALBASE%%/share/xsl/docbook/xhtml/chunk.xsl
X DOCBOOK_XHTML_XSL=http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl
X-#DOCBOOK_DTD=/usr/share/xml/docbook/schema/dtd/4.5/docbookx.dtd
X+#DOCBOOK_DTD=%%LOCALBASE%%/share/xml/docbook/4.5/docbookx.dtd
X DOCBOOK_DTD=http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd
X 
X # BUILD : options to compile with netpbm / opencv libraries
X 
X+CFLAGS = -O2 -I%%LOCALBASE%%/include -I. -DNEEDS_GETLINE
X+CXXFLAGS = -O2 -I%%LOCALBASE%%/include -I. -DNEEDS_GETLINE
X+LDFLAGS += -L%%LOCALBASE%%/lib
X+
X GCC_NETPBM=-lnetpbm
X 
X-GCC_OPENCV=-I /usr/include/opencv
X+GCC_OPENCV=-I %%LOCALBASE%%/include/opencv
X GCC_OPENCV_LIBS=auto
X 
X # INFO IN DESKTOP FILE
X@@ -86,6 +92,6 @@
X 
X ifneq ($(SYSTEM_TYPE),rpm)
X INSTALL_USER=root
X-INSTALL_GROUP=root
X+INSTALL_GROUP=wheel
X endif
X 
d5fa262213b1769391cd35b3e37be827
echo x - auto-multiple-choice/files/patch-AMC-perl__AMC__Gui__Commande.pm
sed 's/^X//' >auto-multiple-choice/files/patch-AMC-perl__AMC__Gui__Commande.pm << '24d29f90176529059b842b9a2719aac0'
X--- ./AMC-perl/AMC/Gui/Commande.pm.orig	2013-03-28 22:45:35.000000000 +0900
X+++ ./AMC-perl/AMC/Gui/Commande.pm	2013-05-20 15:00:06.000000000 +0900
X@@ -150,7 +150,7 @@
X 
X     } else {
X 	my $fh=$self->{'fh'};
X-	my $line = <$fh>;
X+	my $line = decode("utf8",<$fh>);
X 	my $r='';
X 
X 	if($self->{'avancement'}) {
X@@ -173,7 +173,7 @@
X 	  if($line =~ /^(ERR|INFO|WARN)/) {
X 	    chomp(my $lc=$line);
X 	    $lc =~ s/^(ERR|INFO|WARN)[:>]\s*//;
X-	    $self->add_message($1,decode("utf-8",$lc));
X+	    $self->add_message($1,$lc);
X 	  }
X 	  if($line =~ /^VAR:\s*([^=]+)=(.*)/) {
X 	    $self->{'variables'}->{$1}=$2;
24d29f90176529059b842b9a2719aac0
echo x - auto-multiple-choice/files/patch-AMC-perl__AMC__Filter__plain.pm
sed 's/^X//' >auto-multiple-choice/files/patch-AMC-perl__AMC__Filter__plain.pm << '7e56fc3a21b228af2bc5f16605ff8494'
X--- ./AMC-perl/AMC/Filter/plain.pm.orig	2013-03-05 19:14:13.000000000 +0900
X+++ ./AMC-perl/AMC/Filter/plain.pm	2013-05-20 15:00:06.000000000 +0900
X@@ -139,10 +139,10 @@
X     $self->{'options'}->{'arabic'}=1;
X   }
X 
X-  # if JA language is selected, switch to 'platex+dvipdfmx' LaTeX
X+  # if JA language is selected, switch to 'platex+dvipdf' LaTeX
X   # engine, remove default font and don't use xltxtra LaTeX package
X   if($self->{'options'}->{'lang'} eq 'JA') {
X-    $self->{'default_options'}->{'latexengine'}='platex+dvipdfmx';
X+    $self->{'default_options'}->{'latexengine'}='platex+dvipdf';
X     $self->{'default_options'}->{'font'}='';
X     $self->{'default_options'}->{'xltxtra'}='';
X   }
7e56fc3a21b228af2bc5f16605ff8494
echo x - auto-multiple-choice/files/patch-AMC-gui-edit_preferences.glade
sed 's/^X//' >auto-multiple-choice/files/patch-AMC-gui-edit_preferences.glade << '138db463cf3c0a45a95c39b832c4d88b'
X--- ./AMC-gui-edit_preferences.glade.orig	2013-03-27 21:02:23.000000000 +0900
X+++ ./AMC-gui-edit_preferences.glade	2013-05-20 15:00:06.000000000 +0900
X@@ -3944,6 +3944,9 @@
X       <row>
X         <col id="0">xelatex</col>
X       </row>
X+      <row>
X+        <col id="0">platex+dvipdf</col>
X+      </row>
X     </data>
X   </object>
X </interface>
138db463cf3c0a45a95c39b832c4d88b
echo x - auto-multiple-choice/distinfo
sed 's/^X//' >auto-multiple-choice/distinfo << '086725b2c2ce0327687257de8fb0a9e0'
XSHA256 (auto-multiple-choice_1.2.0_precomp.tar.gz) = 03500b407d2aa51dcbbbb8678e270f4095ebba061dac32c5c63b9bb13613212e
XSIZE (auto-multiple-choice_1.2.0_precomp.tar.gz) = 7460641
086725b2c2ce0327687257de8fb0a9e0
echo x - auto-multiple-choice/pkg-descr
sed 's/^X//' >auto-multiple-choice/pkg-descr << 'c37d9a11c717ab0bcdb3a5b3f0867037'
XAuto Multiple Choice (AMC) is a piece of software that helps you to
Xcreate and manage multiple choice questionnaires, with automated
Xmarking.  Tests can be written in plain text or LaTeX.  Automated
Xcorrection and grading is performed from scans of the answer sheets
Xusing optical mark recognition.
X
XWWW: http://home.gna.org/auto-qcm/
c37d9a11c717ab0bcdb3a5b3f0867037
echo x - auto-multiple-choice/Makefile
sed 's/^X//' >auto-multiple-choice/Makefile << 'a448402887eeb04fd1487855d0bf47ed'
X# $FreeBSD$
X
XPORTNAME=	auto-multiple-choice
XPORTVERSION=	1.2.0
XCATEGORIES=	misc
XMASTER_SITES=	http://download.gna.org/auto-qcm/
XDISTNAME=	auto-multiple-choice_${PORTVERSION}_precomp
X
XMAINTAINER=	hiroto.kagotani@gmail.com
XCOMMENT=	Multiple Choice Questionnaires management with automated marking
X
XBUILD_DEPENDS=	iconv:${PORTSDIR}/converters/libiconv
XLIB_DEPENDS=	netpbm:${PORTSDIR}/graphics/netpbm \
X		opencv_highgui:${PORTSDIR}/graphics/opencv
XRUN_DEPENDS=	${SITE_PERL}/XML/Writer.pm:${PORTSDIR}/textproc/p5-XML-Writer \
X		${SITE_PERL}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \
X		${SITE_PERL}/Text/CSV.pm:${PORTSDIR}/textproc/p5-Text-CSV \
X		${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \
X		${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite \
X		${SITE_PERL}/${PERL_ARCH}/Gtk2/Notify.pm:${PORTSDIR}/devel/p5-Gtk2-Notify \
X		${SITE_PERL}/${PERL_ARCH}/Net/CUPS.pm:${PORTSDIR}/print/p5-Net-CUPS \
X		${SITE_PERL}/OpenOffice/OODoc.pm:${PORTSDIR}/textproc/p5-OpenOffice-OODoc \
X		${SITE_PERL}/Email/Sender.pm:${PORTSDIR}/mail/p5-Email-Sender \
X		${SITE_PERL}/Email/MIME.pm:${PORTSDIR}/mail/p5-Email-MIME \
X		pdftoppm:${PORTSDIR}/graphics/poppler-utils
X
XUSE_TEX=	latex texhash
XUSE_GMAKE=	yes
XUSE_GETTEXT=	yes
X
XMAKE_JOBS_SAFE=	yes
XWRKSRC=		${WRKDIR}/auto-multiple-choice-${PORTVERSION}
X
X.include <bsd.port.pre.mk>
X
X.if !empty(TEX_DEFAULT:U:MTETEX)
XRUN_DEPENDS+=	${LOCALBASE}/share/texmf-local/tex/latex/bophook/bophook.sty:${PORTSDIR}/print/bophook
X.endif
X
XSHARED_MIMEINFO_DIR=	${PREFIX}/share/mime/packages
XLANG_GTKSOURCEVIEW_DIR=	${PREFIX}/share/gtksourceview-2.0/language-specs
X
XMANLANG=	"" fr ja
XMAN1=		auto-multiple-choice.1
XMAN1_EN=	AMC-analyse.1 AMC-annote.1 AMC-association.1 \
X		AMC-association-auto.1 AMC-export.1 AMC-imprime.1 \
X		AMC-getimages.1 AMC-mailing.1 AMC-meptex.1 AMC-note.1 \
X		AMC-prepare.1 AMC-regroupe.1
XMAN1_JA=	${MAN1_EN}
X
Xpost-patch:
X	@${REINPLACE_CMD} -e \
X		"s|%%LOCALBASE%%|${LOCALBASE}|g; \
X		 s|%%PREFIX%%|${PREFIX}|g; \
X		 s|%%DOCSDIR%%|${DOCSDIR}|g; \
X		 s|%%DATADIR%%|${DATADIR}|g; \
X		 s|%%SITE_PERL%%|${PREFIX}/${SITE_PERL_REL}|g; \
X		 s|%%SHARED_MIMEINFO_DIR%%|${SHARED_MIMEINFO_DIR}|g; \
X		 s|%%LANG_GTKSOURCEVIEW_DIR%%|${LANG_GTKSOURCEVIEW_DIR}|g; \
X		 " ${WRKSRC}/Makefile.conf
X
Xpost-install:
X	@${CAT} ${PKGMESSAGE}
X
X.include <bsd.port.post.mk>
a448402887eeb04fd1487855d0bf47ed
echo x - auto-multiple-choice/pkg-plist
sed 's/^X//' >auto-multiple-choice/pkg-plist << 'aaaa09948d515b8e5cc003cc157eb841'
Xbin/auto-multiple-choice
Xlib/AMC/exec/AMC-detect
Xlib/AMC/exec/AMC-traitement-image
Xlib/AMC/perl/AMC-analyse.pl
Xlib/AMC/perl/AMC-annote.pl
Xlib/AMC/perl/AMC-association-auto.pl
Xlib/AMC/perl/AMC-association.pl
Xlib/AMC/perl/AMC-export.pl
Xlib/AMC/perl/AMC-getimages.pl
Xlib/AMC/perl/AMC-gui-apropos.glade
Xlib/AMC/perl/AMC-gui-choix_pages_impression.glade
Xlib/AMC/perl/AMC-gui-choix_postcorrect.glade
Xlib/AMC/perl/AMC-gui-choix_projet.glade
Xlib/AMC/perl/AMC-gui-choose-mode.glade
Xlib/AMC/perl/AMC-gui-choose_columns.glade
Xlib/AMC/perl/AMC-gui-choose_students.glade
Xlib/AMC/perl/AMC-gui-cleanup.glade
Xlib/AMC/perl/AMC-gui-edit_preferences.glade
Xlib/AMC/perl/AMC-gui-filter_details.glade
Xlib/AMC/perl/AMC-gui-liste_dialog.glade
Xlib/AMC/perl/AMC-gui-mailing.glade
Xlib/AMC/perl/AMC-gui-main_window.glade
Xlib/AMC/perl/AMC-gui-make_template.glade
Xlib/AMC/perl/AMC-gui-saisie_auto.glade
Xlib/AMC/perl/AMC-gui-source_latex_choix.glade
Xlib/AMC/perl/AMC-gui-source_latex_choix_zip.glade
Xlib/AMC/perl/AMC-gui-source_latex_dialog.glade
Xlib/AMC/perl/AMC-gui-source_latex_modele.glade
Xlib/AMC/perl/AMC-gui-unrecognized.glade
Xlib/AMC/perl/AMC-gui.pl
Xlib/AMC/perl/AMC-imprime.pl
Xlib/AMC/perl/AMC-latex-link.pl
Xlib/AMC/perl/AMC-mailing.pl
Xlib/AMC/perl/AMC-manuel.pl
Xlib/AMC/perl/AMC-meptex.pl
Xlib/AMC/perl/AMC-note.pl
Xlib/AMC/perl/AMC-prepare.pl
Xlib/AMC/perl/AMC-regroupe.pl
Xshare/applications/auto-multiple-choice.desktop
X%%DATADIR%%/icons/amc-annotate.svg
X%%DATADIR%%/icons/amc-auto-assoc.svg
X%%DATADIR%%/icons/amc-auto-capture.svg
X%%DATADIR%%/icons/amc-group.svg
X%%DATADIR%%/icons/amc-manual-assoc.svg
X%%DATADIR%%/icons/amc-manual-capture.svg
X%%DATADIR%%/icons/amc-mark.svg
X%%DATADIR%%/icons/amc-send.svg
X%%DATADIR%%/icons/auto-multiple-choice.svg
X%%DATADIR%%/models/ar/directory.xml
X%%DATADIR%%/models/ar/groups.tgz
X%%DATADIR%%/models/ar/scoring.tgz
X%%DATADIR%%/models/ar/separate.tgz
X%%DATADIR%%/models/ar/simple.tgz
X%%DATADIR%%/models/en/directory.xml
X%%DATADIR%%/models/en/groups.tgz
X%%DATADIR%%/models/en/scoring.tgz
X%%DATADIR%%/models/en/separate.tgz
X%%DATADIR%%/models/en/simple-txt.tgz
X%%DATADIR%%/models/en/simple.tgz
X%%DATADIR%%/models/fr/bareme.tgz
X%%DATADIR%%/models/fr/directory.xml
X%%DATADIR%%/models/fr/ensemble.tgz
X%%DATADIR%%/models/fr/groupes.tgz
X%%DATADIR%%/models/fr/simple-txt.tgz
X%%DATADIR%%/models/fr/simple.tgz
X%%DATADIR%%/models/ja/groups.tgz
X%%DATADIR%%/models/ja/scoring.tgz
X%%DATADIR%%/models/ja/separate.tgz
X%%DATADIR%%/models/ja/simple-txt.tgz
X%%DATADIR%%/models/ja/simple.tgz
X%%DATADIR%%/models/ja/directory.xml
X%%DOCSDIR%%/auto-multiple-choice.en.pdf
X%%DOCSDIR%%/auto-multiple-choice.en.xml
X%%DOCSDIR%%/auto-multiple-choice.fr.pdf
X%%DOCSDIR%%/auto-multiple-choice.fr.xml
X%%DOCSDIR%%/auto-multiple-choice.ja.pdf
X%%DOCSDIR%%/auto-multiple-choice.ja.xml
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-TXT.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-analyse.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-annote.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-association.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-association-auto.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-export.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-imprime.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-note.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-prepare.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/AMC-regroupe.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/ar01s07.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/auto-multiple-choice.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/commands.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/flag.svg
X%%DOCSDIR%%/html/auto-multiple-choice.en/graphical-interface.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/index.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/latex.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/prerequis.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/re03.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/re05.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/re13.html
X%%DOCSDIR%%/html/auto-multiple-choice.en/usagenotes.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/AMC-TXT.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/ar01s07.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/auto-multiple-choice.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/commandes.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/flag.svg
X%%DOCSDIR%%/html/auto-multiple-choice.fr/index.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/interface-graphique.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/latex.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/notesutilisation.html
X%%DOCSDIR%%/html/auto-multiple-choice.fr/prerequis.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-TXT.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-analyse.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-annote.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-association.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-association-auto.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-export.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-imprime.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-note.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-prepare.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/AMC-regroupe.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/ar01s07.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/auto-multiple-choice.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/commands.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/flag.svg
X%%DOCSDIR%%/html/auto-multiple-choice.ja/graphical-interface.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/index.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/ix01.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/latex.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/prerequis.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/re03.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/re05.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/re13.html
X%%DOCSDIR%%/html/auto-multiple-choice.ja/usagenotes.html
X%%DOCSDIR%%/html/images/callouts/1.png
X%%DOCSDIR%%/html/images/callouts/10.png
X%%DOCSDIR%%/html/images/callouts/11.png
X%%DOCSDIR%%/html/images/callouts/12.png
X%%DOCSDIR%%/html/images/callouts/13.png
X%%DOCSDIR%%/html/images/callouts/14.png
X%%DOCSDIR%%/html/images/callouts/15.png
X%%DOCSDIR%%/html/images/callouts/2.png
X%%DOCSDIR%%/html/images/callouts/3.png
X%%DOCSDIR%%/html/images/callouts/4.png
X%%DOCSDIR%%/html/images/callouts/5.png
X%%DOCSDIR%%/html/images/callouts/6.png
X%%DOCSDIR%%/html/images/callouts/7.png
X%%DOCSDIR%%/html/images/callouts/8.png
X%%DOCSDIR%%/html/images/callouts/9.png
X%%DOCSDIR%%/html/images/important.png
X%%DOCSDIR%%/html/images/note.png
X%%DOCSDIR%%/html/images/warning.png
X%%DOCSDIR%%/html/index.html
X%%DOCSDIR%%/html/style.css
Xshare/locale/ar/LC_MESSAGES/auto-multiple-choice.mo
Xshare/locale/es/LC_MESSAGES/auto-multiple-choice.mo
Xshare/locale/fr/LC_MESSAGES/auto-multiple-choice.mo
Xshare/locale/ja/LC_MESSAGES/auto-multiple-choice.mo
X%%SITE_PERL%%/AMC/Basic.pm
X%%SITE_PERL%%/AMC/Boite.pm
X%%SITE_PERL%%/AMC/Calage.pm
X%%SITE_PERL%%/AMC/Data.pm
X%%SITE_PERL%%/AMC/DataModule.pm
X%%SITE_PERL%%/AMC/DataModule/association.pm
X%%SITE_PERL%%/AMC/DataModule/capture.pm
X%%SITE_PERL%%/AMC/DataModule/layout.pm
X%%SITE_PERL%%/AMC/DataModule/report.pm
X%%SITE_PERL%%/AMC/DataModule/scoring.pm
X%%SITE_PERL%%/AMC/Exec.pm
X%%SITE_PERL%%/AMC/Export.pm
X%%SITE_PERL%%/AMC/Export/CSV.pm
X%%SITE_PERL%%/AMC/Export/List.pm
X%%SITE_PERL%%/AMC/Export/ods.pm
X%%SITE_PERL%%/AMC/Export/register.pm
X%%SITE_PERL%%/AMC/Export/register/CSV.pm
X%%SITE_PERL%%/AMC/Export/register/List.pm
X%%SITE_PERL%%/AMC/Export/register/ods.pm
X%%SITE_PERL%%/AMC/FileMonitor.pm
X%%SITE_PERL%%/AMC/Filter.pm
X%%SITE_PERL%%/AMC/Filter/latex.pm
X%%SITE_PERL%%/AMC/Filter/plain.pm
X%%SITE_PERL%%/AMC/Filter/register.pm
X%%SITE_PERL%%/AMC/Filter/register/latex.pm
X%%SITE_PERL%%/AMC/Filter/register/plain.pm
X%%SITE_PERL%%/AMC/Gui/Association.glade
X%%SITE_PERL%%/AMC/Gui/Association.pm
X%%SITE_PERL%%/AMC/Gui/Avancement.pm
X%%SITE_PERL%%/AMC/Gui/Commande.pm
X%%SITE_PERL%%/AMC/Gui/Manuel.glade
X%%SITE_PERL%%/AMC/Gui/Manuel.pm
X%%SITE_PERL%%/AMC/Gui/Notes.glade
X%%SITE_PERL%%/AMC/Gui/Notes.pm
X%%SITE_PERL%%/AMC/Gui/PageArea.pm
X%%SITE_PERL%%/AMC/Gui/WindowSize.pm
X%%SITE_PERL%%/AMC/Gui/Zooms.glade
X%%SITE_PERL%%/AMC/Gui/Zooms.pm
X%%SITE_PERL%%/AMC/Image.pm
X%%SITE_PERL%%/AMC/Messages.pm
X%%SITE_PERL%%/AMC/NamesFile.pm
X%%SITE_PERL%%/AMC/Queue.pm
X%%SITE_PERL%%/AMC/Scoring.pm
X%%SITE_PERL%%/AMC/ScoringEnv.pm
X%%SITE_PERL%%/AMC/State.pm
X%%SITE_PERL%%/AMC/Substitute.pm
Xshare/pixmaps/auto-multiple-choice.xpm
Xshare/texmf-local/doc/latex/AMC/automultiplechoice.pdf
Xshare/texmf-local/doc/latex/AMC/questions.tex
Xshare/texmf-local/doc/latex/AMC/sample-amc.pdf
Xshare/texmf-local/doc/latex/AMC/sample-amc.tex
Xshare/texmf-local/doc/latex/AMC/sample-plain.pdf
Xshare/texmf-local/doc/latex/AMC/sample-plain.tex
Xshare/texmf-local/doc/latex/AMC/sample-separate.pdf
Xshare/texmf-local/doc/latex/AMC/sample-separate.tex
Xshare/texmf-local/tex/latex/AMC/automultiplechoice.sty
Xshare/mime/packages/auto-multiple-choice.xml
Xshare/gtksourceview-2.0/language-specs/amc-txt.lang
X@dirrm lib/AMC/exec
X@dirrm lib/AMC/perl
X@dirrm lib/AMC
X@dirrm %%SITE_PERL%%/AMC/DataModule
X@dirrm %%SITE_PERL%%/AMC/Export/register
X@dirrm %%SITE_PERL%%/AMC/Export
X@dirrm %%SITE_PERL%%/AMC/Filter/register
X@dirrm %%SITE_PERL%%/AMC/Filter
X@dirrm %%SITE_PERL%%/AMC/Gui
X@dirrm %%SITE_PERL%%/AMC
X@dirrm %%DATADIR%%/icons
X@dirrm %%DATADIR%%/models/ar
X@dirrm %%DATADIR%%/models/en
X@dirrm %%DATADIR%%/models/fr
X@dirrm %%DATADIR%%/models/ja
X@dirrm %%DATADIR%%/models
X@dirrm %%DATADIR%%
X@dirrm %%DOCSDIR%%/html/auto-multiple-choice.en
X@dirrm %%DOCSDIR%%/html/auto-multiple-choice.fr
X@dirrm %%DOCSDIR%%/html/auto-multiple-choice.ja
X@dirrm %%DOCSDIR%%/html/images/callouts
X@dirrm %%DOCSDIR%%/html/images
X@dirrm %%DOCSDIR%%/html
X@dirrm %%DOCSDIR%%
X@dirrm share/texmf-local/doc/latex/AMC
X@dirrm share/texmf-local/tex/latex/AMC
aaaa09948d515b8e5cc003cc157eb841
echo x - auto-multiple-choice/pkg-message
sed 's/^X//' >auto-multiple-choice/pkg-message << 'aa05ac752dc1fbf0ab0f489c75177334'
X======================================================================
XAuto Multiple Choice uses some optional helper software to view and/or
Xedit various file formats such as PDF, Image, CSV, TeX, etc.
XYou may want to install software from the following command list or
Xspecify your favorite one in the GUI preference menu.
X  PDF viewer: evince, acroread, gpdf, okular, xpdf.
X  Image viewer: eog, ristretto, gpicview, mirage, gwenview.
X  ODS viewer: libreoffice, localc, oocalc.
X  XML viewer: gedit, kedit, kwrite, mousepad, leafpad.
X  TeX editor: texmaker, kile, gummi, emacs, gedit, kedit, kwrite, mousepad,
X              leafpad.
X  Text editor: gedit, kedit, kwrite, mousepad, emacs, leafpad.
X  Web browser: sensible-browser, firefox, galeon, konqueror, dillo, chromium.
X  File manager: nautilus, pcmanfm, Thunar, konqueror, dolphin.
X
XNote to Japanese users:
XAuto Multiple Choice does not work with platex based on teTeX distribution.
XPlease install platex/uplatex based on TeXLive distribution instead.
X======================================================================
aa05ac752dc1fbf0ab0f489c75177334
exit
--- .shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



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