Obsolete

Version 6 (Joël Brogniart, 12/07/2017 10:41 am)

1 1
h1. Installation de la version de développement d'AMC sous OS X Mountain Lion (10.8)
2 1
3 1
Le logiciel Auto Multiple Choice (AMC) est un logiciel de gestion de questionnaires. Il permet, à partir de la définition des questions (question à choix unique/question à choix multiple, bonnes/mauvaises réponses…) de générer des feuilles de questionnaires. Une fois ces questionnaires remplis et numérisés, AMC permet de corriger automatiquement les questionnaires. Ce logiciel fonctionne dans un environnement graphique X Window System sous Linux et OS X.
4 1
5 1
Il est possible d'installer la "version précompilée 1.1.1 d'AMC":http://project.auto-multiple-choice.net/projects/auto-multiple-choice/wiki/Installation_d'AMC_sous_OS_X_Mountain_Lion, mais pour pouvoir bénéfier des améliorations apportées à Auto Multiple Choice au cours de son développement, il est aussi possible d'installer AMC à partir du code source.
6 1
7 1
Pour l'instant, l'installation décrite ici est assez technique et concerne uniquement OS X 10.8. Cette installation nécessite quelques connaissances sur les outils Unix, l'utilisation de lignes de commandes, une compréhension de l'architecture des ports "MacPorts":http://www.macports.org, une petite compréhension des dépendances entre différents outils (Subversion, MacPorts, PERL, X11, ports…) et de l'architecture OS X. Il faut aussi disposer des droits d'administration sur l'ordinateur. Elle n'est donc malheureusement pas destinée à tout le monde. Il y a un petit soucis pour la communication avec les outils d'impression et la version installée ne pourra pas imprimer directement. Les documents générés par AMC devront être imprimés à partir de OS X.
8 1
9 1
Pour cette installation il va falloir créer un dépot local MacPort. Dans ce dépot, seront mis les fichiers de description de port des outils inconnus de MacPorts. Il y aura un fichier de port pour AMC et quelques fichiers de port supplémentaires pour des outils nécessaires au fonctionnement d'AMC. Une fois les fichiers de port installés, l'installation d'AMC pourra être lancée.
10 1
11 1
h2. Prérequis
12 1
13 1
Les prérequis sont identiques à ceux de l'installation de la version 1.1.1 d'AMC. Pour fonctionner avec son interface, AMC nécessite un environnement graphique X Window System ou X11, la police de caractères Linux Libertine et le système d'installation MacPorts.
14 1
15 1
h3. L'environnement X Window System
16 1
17 1
OS X ne contient pas en standard l'environnement graphique X11. Il est possible de combler cette lacune en installant XQuartz, un environnement X Windows System fonctionnant sous OS X. On peut télécharger l'application sur le site "XQuartz":http://xquartz.macosforge.org.
18 1
19 1
h3. La police Linux Libertine
20 1
21 1
La police Linux Libertine est une police libre qui couvre les pages de code pour les langues latines, le grec, les langues cyrilliques, l'hébreu, l'alphabet phonétique international (et d'autres). Il faut télécharger le paquet "OTF" sur le site "LinuxLibertine.org":http://www.linuxlibertine.org.
22 1
23 1
*Attention* : La version actuelle de XQuartz (2.7.4) ne reconnait pas les polices installées dans le dossier de l'utilisateur. Il faut installer les polices en les déplaçant dans le dossier "@/Library/Fonts@".
24 1
25 1
h3. MacPorts
26 1
27 1
MacPorts est un système qui permet de compiler, installer et gérer des logiciels source libre. Il faut télécharger le paquet d'installation Mountain Lion sur le site "MacPorts":http://www.macports.org et installer MacPorts.
28 1
29 1
h2. MacPorts et les fichiers de port
30 1
31 1
Un fichier de port MacPorts contient les informations qui permettent d'installer un programme dans le système MacPorts. Il indique quels sont les outils nécessaires à l'installation et au fonctionnement du programme et comment faire pour installer le programme. MacPorts contient de "nombreux ports":http://www.macports.org/ports.php", mais il ne contient pas de port décrivant l'installation d'AMC à partir du code source du programme. Certains outils nécessaires pour l'installation et le fonctionnement d'AMC sont absents de MacPorts. Il va donc falloir créer les fichiers de port pour ces outils ainsi que le fichier de port pour la version de développement d'AMC.
32 1
33 1
Pour éviter les conflits avec les ports déjà décrits de MacPorts, les nouveaux fichiers de ports seront installés dans le dossier de l'utilisateur qui fait l'installation, au lieu d'être installés dans les dossiers directements gérés par MacPorts.
34 1
35 1
*Remarque* : MacPorts est un effort collaboratif et de nombreux développeurs participent à son évolution. Ainsi les fichiers décrits ici ont ils été proposés pour être ajoutés aux fichiers référencés dans MacPorts. Lorsque et si un ajout est accepté, le fichier de port local n'est plus nécessaire. Une mise à jour de MacPorts importera le fichier de port accepté dans la hiérarchie standard de MacPorts.
36 1
37 1
h3. Dépot local MacPorts
38 1
39 1
Pour que MacPorts puisse utiliser un dossier local, il faut créer ce dossier local.
40 1
41 1
<pre>mkdir -p ~/nix/macports</pre>
42 1
43 1
Il faut ensuite indiquer à MacPorts de prendre en compte le dossier local et ceci, avant la prise en compte de la hiérarchie standard de MacPorts. Pour cela il faut éditer le fichier "@/opt/local/etc/macports/sources.conf@" et ajouter un URL pointant vers le dossier local avant l'URL @rsync@ du dépot MacPorts.
44 1
45 1
<pre>file:///Users/julesvernes/nix/macports
46 1
rsync://rsync.macports.org/release/tarballs/ports.tar [default]</pre>
47 1
  
48 1
h3. Fichiers de ports
49 1
50 2 Joël Brogniart
Une archive contenant les fichiers de ports décrits ici est disponible au téléchargement : attachment:macports.zip.
51 1
52 2 Joël Brogniart
Les ports sont regroupés par catégories et l'organisation des fichiers de port reflète ce groupement. Chaque port fait partie d'une catégorie principale et dispose de son propre dossier. La catégorie principale de AMC dans MacPorts est X11, aussi le dossier du port pour AMC se trouvera à l'intérieur d'un dossier @X11@. AMC est développé en PERL et nécessite de nombreux modules CPAN. Les modules PERL à ajouter le seront dans le dossier @perl@. Les ports PERL suivants seront ajoutés.
53 5 Joël Brogniart
* p5-email-abstract (module CPAN "Email::Abstract":http://search.cpan.org/~rjbs/Email-Abstract)
54 1
* p5-email-sender (module CPAN "Email::Sender":http://search.cpan.org/~rjbs/Email-Sender)
55 5 Joël Brogniart
* p5-moo (module CPAN "Moo":http://search.cpan.org/~mstrout/Moo)
56 1
* p5-moox-types-mooselike (module CPAN "Moox::Types::MooseLike":http://search.cpan.org/~mateu/MooX-Types-MooseLike)
57 1
* p5-role-tiny (module CPAN "Role::Tiny":http://search.cpan.org/~ilmari/Role-Tiny)
58 1
* p5-strictures (module CPAN "strictures":http://search.cpan.org/~ether/strictures)
59 2 Joël Brogniart
* p5-throwable (module CPAN "Throwable":http://search.cpan.org/~rjbs/Throwable)
60 1
61 1
Les ports suivants seront mis à jour car la version actuellement disponible dans MacPort est trop ancienne.
62 1
* p5-class-load (module CPAN "Class::Load":http://search.cpan.org/~drolsky/Class-Load)
63 1
* p5-email-mime (module CPAN "Email::MIME":http://search.cpan.org/~rjbs/Email-MIME)
64 3 Joël Brogniart
* -p5-email-simple (module CPAN "Email::Simple":http://search.cpan.org/~rjbs/Email-Simple)- (plus nécessaire, mis à jour dans MacPorts)
65 1
66 1
Voici une commande permettant de créer cette hiérarchie.
67 1
<pre>cd ~/nix/macports
68 2 Joël Brogniart
mkdir -p perl/p5-class-load perl/p5-email-abstract perl/p5-email-mime \
69 2 Joël Brogniart
    perl/p5-email-sender perl/p5-email-simple perl/p5-moo perl/p5-moox-types-mooselike \
70 2 Joël Brogniart
    perl/p5-role-tiny perl/p5-strictures perl/p5-throwable x11/auto-multiple-choice-devel</pre>
71 1
72 2 Joël Brogniart
!port-hierarchy.png!
73 2 Joël Brogniart
74 2 Joël Brogniart
Chacun des dossiers de port doit contenir un document nommé @Portfile@. Ce document est un document texte contenant une description permettant l'installation par MacPorts de l'outil. Les fichiers de port des nouveaux modules PERL ont été créés avec l'utilitaire "@cpan2port@":https://trac.macports.org/wiki/howto/cpan2port puis modifiés pour respecter les règles et pratiques utilisées par les contributeurs de MacPorts. Pour les modules mis à jour, une copie du fichier de port disponible dans MacPorts a été adaptée pour l'installation de la nouvelle version de l'outil.
75 1
  
76 2 Joël Brogniart
h4. @perl/p5-class-load/Portfile@
77 2 Joël Brogniart
<pre title="perl/p5-class-load/Portfile">PortSystem            1.0
78 1
PortGroup             perl5 1.0
79 1
80 1
perl5.branches        5.8 5.10 5.12 5.14 5.16
81 1
perl5.setup           Class-Load 0.20
82 1
license               {Artistic-1 GPL}
83 1
maintainers           nomaintainer
84 1
description           a working (require \"Class::Name\") and more
85 1
long_description      ${description}
86 1
87 1
platforms             darwin
88 1
89 1
checksums             sha256 823c45885e1d29feef6867282b881d402f42af6413c7e0e9f8fe32086aee8c20 \
90 1
                      rmd160 040eeb3049f08444e7d7f3cfcf0bcc03e2ed7e97
91 1
92 1
if {${perl5.major} != ""} {
93 1
depends_lib-append    port:p${perl5.major}-try-tiny \
94 1
                      port:p${perl5.major}-package-stash \
95 1
                      port:p${perl5.major}-module-implementation \
96 1
                      port:p${perl5.major}-data-optlist \
97 1
                      port:p${perl5.major}-module-runtime
98 1
depends_build-append  port:p${perl5.major}-test-requires \
99 1
                      port:p${perl5.major}-test-fatal
100 1
101 1
supported_archs       noarch
102 1
}</pre>
103 1
104 2 Joël Brogniart
h4. @perl/p5-email-abstract/Portfile@
105 2 Joël Brogniart
<pre title="perl/p5-email-abstract/Portfile">PortSystem          1.0
106 1
PortGroup           perl5 1.0
107 1
108 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
109 1
perl5.setup         Email-Abstract 3.004
110 1
license             {Artistic-1 GPL}
111 1
maintainers         nomaintainer
112 1
description         Email::Abstract - unified interface to mail representations
113 1
long_description    Email::Abstract provides module writers with the ability \
114 1
                    to write simple, representation-independent mail handling \
115 1
                    code. For instance, in the cases of Mail::Thread or \
116 1
                    Mail::ListDetector, a key part of the code involves \
117 1
                    reading the headers from a mail object. Where previously \
118 1
                    one would either have to specify the mail class required, \
119 1
                    or to build a new object from scratch, Email::Abstract can \
120 1
                    be used to perform certain simple operations on an object \
121 1
                    regardless of its underlying representation. \
122 1
                    \
123 1
                    Email::Abstract currently supports Mail::Internet, \
124 1
                    MIME::Entity, Mail::Message, Email::Simple and \
125 1
                    Email::MIME. Other representations are encouraged to \
126 1
                    create their own Email::Abstract::* class by copying \
127 1
                    Email::Abstract::EmailSimple. All modules installed under \
128 1
                    the Email::Abstract hierarchy will be automatically \
129 1
                    picked up and used.
130 1
131 1
platforms           darwin
132 1
supported_archs     noarch
133 1
134 1
checksums           sha256 0d195361c1168b2e890b94aeae6b7b4f2d3eaf6664df18f178c543c1fa532a3a \
135 1
                    rmd160 a6a99eb1c250392c55ee216c79897796c7c8501b
136 1
137 1
if {${perl5.major} != ""} {
138 1
depends_lib-append  port:p${perl5.major}-email-simple \
139 1
                    port:p${perl5.major}-mro-compat
140 1
141 1
}</pre>
142 1
143 2 Joël Brogniart
h4. @perl/p5-email-mime/Portfile@
144 2 Joël Brogniart
<pre title="perl/p5-email-mime/Portfile">PortSystem          1.0
145 1
PortGroup           perl5 1.0
146 1
147 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
148 1
perl5.setup         Email-MIME 1.911
149 1
license             {Artistic-1 GPL}
150 1
maintainers         ricci openmaintainer
151 1
description         Easy MIME message parsing
152 1
long_description    ${description}
153 1
154 1
platforms           darwin
155 1
supported_archs     noarch
156 1
157 1
if {${perl5.major} != ""} {
158 1
depends_lib-append  port:p${perl5.major}-email-mime-contenttype	\
159 1
                    port:p${perl5.major}-email-mime-encodings	\
160 1
                    port:p${perl5.major}-email-messageid \
161 1
                    port:p${perl5.major}-email-simple	\
162 1
                    port:p${perl5.major}-mime-types
163 1
164 1
checksums           sha256 cde752e1cbfc9869547b5f94d8e4b9b64bdb6403746111e02e79be3085be7b5a \
165 1
                    rmd160 ebe53fb4174e5c73002879eab73becb868372fdc
166 1
}</pre>
167 1
168 2 Joël Brogniart
h4. @perl/p5-email-sender/Portfile@
169 2 Joël Brogniart
<pre title="perl/p5-email-sender/Portfile">PortSystem          1.0
170 1
PortGroup           perl5 1.0
171 1
172 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
173 6 Joël Brogniart
perl5.setup         Email-Sender 1.300006
174 1
license             {Artistic-1 GPL}
175 1
maintainers         nomaintainer
176 1
description         Email::Sender - a library for sending email
177 1
long_description    Email::Sender replaces the old and sometimes problematic \
178 1
                    Email::Send library, which did a decent job at handling \
179 1
                    very simple email sending tasks, but was not suitable for \
180 1
                    serious use, for a variety of reasons.
181 1
182 1
platforms           darwin
183 1
supported_archs     noarch
184 1
185 6 Joël Brogniart
checksums           sha256 860fd72a906f1de8755d7e9c791a1d2517229a997c4612199d949eb0857cfbff \
186 6 Joël Brogniart
                    rmd160 d37ba19b3bdc961dd9c96a72ab8ed987cb65e7ff
187 1
188 1
if {${perl5.major} != ""} {
189 1
depends_lib-append  port:p${perl5.major}-try-tiny \
190 1
                    port:p${perl5.major}-capture-tiny \
191 6 Joël Brogniart
                    port:p${perl5.major}-moo \
192 6 Joël Brogniart
                    port:p${perl5.major}-sub-exporter \
193 1
                    port:p${perl5.major}-throwable \
194 6 Joël Brogniart
                    port:p${perl5.major}-module-runtime \
195 6 Joël Brogniart
                    port:p${perl5.major}-moox-types-mooselike \
196 1
                    port:p${perl5.major}-email-abstract \
197 1
                    port:p${perl5.major}-email-simple \
198 1
                    port:p${perl5.major}-list-moreutils \
199 1
                    port:p${perl5.major}-email-address
200 1
}</pre>
201 1
202 2 Joël Brogniart
203 1
h4. @perl/p5-moo/Portfile@
204 2 Joël Brogniart
<pre title="perl/p5-moo/Portfile">PortSystem          1.0
205 1
PortGroup           perl5 1.0
206 1
207 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
208 6 Joël Brogniart
perl5.setup         Moo 1.001000 ../by-authors/id/M/MS/MSTROUT
209 1
license             {Artistic-1 GPL}
210 1
maintainers         nomaintainer
211 1
description         Moo - Minimalist Object Orientation (with Moose compatiblity)
212 1
long_description    This module is an extremely light-weight subset of Moose \
213 1
                    optimised for rapid startup and \"pay only for what you \
214 1
                    use\". \
215 1
                    \
216 1
                    It also avoids depending on any XS modules to allow simple \
217 1
                    deployments. The name Moo is based on the idea that it \
218 1
                    provides almost -- but not quite -- two thirds of Moose. \
219 1
                    \
220 1
                    Unlike Mouse this module does not aim at full \
221 1
                    compatibility with Moose's surface syntax, preferring \
222 1
                    instead of provide full interoperability via the metaclass \
223 1
                    inflation capabilities described in \"MOO AND MOOSE\".
224 1
225 1
platforms           darwin
226 6 Joël Brogniart
supported_archs       noarch
227 1
228 6 Joël Brogniart
checksums           sha256 be0abe8537b80b41d278542e8335d72a28ae7915edd274f6c58e0078d95e1e18 \
229 6 Joël Brogniart
                    rmd160 eec88fcab9bd6053e7b7781ce9d960ffeb563e26
230 1
231 1
if {${perl5.major} != ""} {
232 1
depends_lib-append  port:p${perl5.major}-devel-globaldestruction \
233 1
                    port:p${perl5.major}-strictures \
234 1
                    port:p${perl5.major}-role-tiny \
235 1
                    port:p${perl5.major}-module-runtime \
236 1
                    port:p${perl5.major}-class-method-modifiers
237 1
depends_build-append port:p${perl5.major}-test-fatal
238 1
}</pre>
239 2 Joël Brogniart
240 1
h4. @perl/p5-moox-types-mooselike/Portfile@
241 1
<pre title="perl/p5-moox-types-mooselike/Portfile">PortSystem          1.0
242 1
PortGroup           perl5 1.0
243 1
244 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
245 6 Joël Brogniart
perl5.setup         MooX-Types-MooseLike 0.23
246 1
license             {Artistic-1 GPL}
247 1
maintainers         nomaintainer
248 1
description         MooX::Types::MooseLike - some Moosish types and a type builder
249 1
long_description    ${description}
250 1
251 1
platforms           darwin
252 6 Joël Brogniart
supported_archs       noarch
253 1
254 6 Joël Brogniart
checksums           sha256 6b4a9b079490cdce9c6ca4f1211ce853da3367801ca35360e0f0c63495dd5f48 \
255 6 Joël Brogniart
                    rmd160 6cb1ba26bf37fc8adc105676735e067500d21e14
256 1
257 1
if {${perl5.major} != ""} {
258 1
depends_lib-append  port:p${perl5.major}-moo \
259 1
                    port:p${perl5.major}-module-runtime
260 1
depends_build-append port:p${perl5.major}-test-fatal
261 1
}</pre>
262 1
263 1
h4. @perl/p5-role-tiny/Portfile@
264 1
<pre title="perl/p5-role-tiny/Portfile">PortSystem          1.0
265 1
PortGroup           perl5 1.0
266 1
267 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
268 6 Joël Brogniart
perl5.setup         Role-Tiny 1.002005 ../by-authors/id/M/MS/MSTROUT
269 1
license             {Artistic-1 GPL}
270 1
maintainers         nomaintainer
271 1
description         Role::Tiny - Roles. Like a nouvelle cuisine portion size slice of Moose.
272 1
long_description    Role::Tiny is a minimalist role composition tool.
273 1
274 1
platforms           darwin
275 1
supported_archs     noarch
276 1
277 6 Joël Brogniart
checksums           sha256 3905f99efd3b604a5de83265914aaa0ead1dcb45c6e38b58c24a2de0309e5bee \
278 6 Joël Brogniart
                    rmd160 aabe3136c2a3877ef6d110b5873c935673985d91
279 1
280 1
if {${perl5.major} != ""} {
281 1
depends_lib-append  port:p${perl5.major}-test-fatal
282 2 Joël Brogniart
}</pre>
283 2 Joël Brogniart
284 1
h4. @perl/p5-strictures/Portfile@
285 1
<pre title="perl/p5-strictures/Portfile">PortSystem          1.0
286 1
PortGroup           perl5 1.0
287 1
288 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
289 1
perl5.setup         strictures 1.004004 ../by-authors/id/E/ET/ETHER
290 1
license             {Artistic-1 GPL}
291 1
platforms           darwin
292 1
maintainers         nomaintainer
293 1
description         strictures - turn on strict and make all warnings fatal.
294 1
long_description    ${description}
295 1
296 1
checksums           sha256 12117dbaaaa85e07cbf01d95927ecb5ba8d5ed896c18d7dbc6b4be47b255ee34 \
297 1
                    rmd160 e9638bdb9621637b457f039913185f1fcf012aa4
298 1
299 1
supported_archs     noarch</pre>
300 1
301 1
h4. @perl/p5-throwable/Portfile@
302 1
<pre title="perl/p5-throwable/Portfile">PortSystem          1.0
303 1
PortGroup           perl5 1.0
304 1
305 1
perl5.branches      5.8 5.10 5.12 5.14 5.16
306 6 Joël Brogniart
perl5.setup         Throwable 0.200004 ../by-authors/id/R/RJ/RJBS
307 1
license             {Artistic-1 GPL}
308 1
maintainers         nomaintainer
309 1
description         Throwable - a role for classes that can be thrown
310 1
long_description    Throwable is a role for classes that are meant to be \
311 1
                    thrown as exceptions to standard program flow. It is \
312 1
                    very simple and does only two things: saves any previous \
313 1
                    value for \$@ and calls die \$self.
314 1
315 1
platforms           darwin
316 6 Joël Brogniart
supported_archs       noarch
317 1
318 6 Joël Brogniart
checksums           sha256 dda2f5c50ecf92e19a5a294d175ca44364ffcc4b7b88e5eac0461dd63219a30e \
319 6 Joël Brogniart
                    rmd160 00683277732ba97c0ff2dca408b332f5f066bf0b
320 1
321 1
if {${perl5.major} != ""} {
322 1
depends_lib-append  port:p${perl5.major}-moox-types-mooselike \
323 1
                    port:p${perl5.major}-devel-stacktrace \
324 1
                    port:p${perl5.major}-class-load \
325 1
                    port:p${perl5.major}-moo
326 1
}</pre>
327 1
328 1
h4. @x11/auto-multiple-choice-devel/Portfile@
329 6 Joël Brogniart
<pre title="x11/auto-multiple-choice-devel/Portfile"># -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
330 6 Joël Brogniart
# $Id: Portfile 96038 2012-07-30 02:14:11Z dports@macports.org $
331 1
332 6 Joël Brogniart
PortSystem              1.0
333 6 Joël Brogniart
 
334 6 Joël Brogniart
name                    auto-multiple-choice-devel
335 6 Joël Brogniart
svn.revision            1361
336 6 Joël Brogniart
version                 1.1.1.${svn.revision}
337 6 Joël Brogniart
categories              x11 tex education
338 6 Joël Brogniart
platforms               darwin
339 6 Joël Brogniart
license                 GPL-2+
340 6 Joël Brogniart
maintainers             nomaintainer
341 1
342 6 Joël Brogniart
description             Auto Multiple Choice - Multiple Choice Papers Management
343 6 Joël Brogniart
long_description        Utility to manage multiple choice questionnaires, \
344 6 Joël Brogniart
                        with optionally mixed questions and answers. \
345 6 Joël Brogniart
                        AMC provides automatic marking from papers' scans. \
346 6 Joël Brogniart
                        Annotated papers are produced. Marks can be exported \
347 6 Joël Brogniart
                        as an OpenOffice.org sheet file. \
348 6 Joël Brogniart
                        \
349 6 Joël Brogniart
                        This version can't print. Documents should be printed from OS X.
350 1
351 6 Joël Brogniart
homepage                http://home.gna.org/auto-qcm
352 6 Joël Brogniart
conflicts               auto-multiple-choice
353 1
354 6 Joël Brogniart
depends_build-append    port:dblatex \
355 6 Joël Brogniart
                        port:p5.12-xml-libxml
356 6 Joël Brogniart
depends_lib             port:opencv
357 6 Joël Brogniart
depends_run             port:p5.12-gtk2 \
358 6 Joël Brogniart
                        port:p5.12-xml-simple \
359 6 Joël Brogniart
                        port:p5.12-xml-writer \
360 6 Joël Brogniart
                        port:p5.12-archive-zip \
361 6 Joël Brogniart
                        port:p5.12-locale-gettext \
362 6 Joël Brogniart
                        port:p5.12-digest-md5 \
363 6 Joël Brogniart
                        port:p5.12-module-load-conditional \
364 6 Joël Brogniart
                        port:p5.12-perlmagick \
365 6 Joël Brogniart
                        port:p5.12-openoffice-oodoc \
366 6 Joël Brogniart
                        port:p5.12-file-mimeinfo \
367 6 Joël Brogniart
                        port:p5.12-dbd-sqlite \
368 6 Joël Brogniart
                        port:p5.12-text-csv \
369 6 Joël Brogniart
                        port:p5.12-file-basedir \
370 6 Joël Brogniart
                        port:p5.12-email-mime \
371 6 Joël Brogniart
                        port:p5.12-email-sender \
372 6 Joël Brogniart
                        port:sqlite3 \
373 6 Joël Brogniart
                        port:poppler \
374 6 Joël Brogniart
                        port:netpbm \
375 6 Joël Brogniart
                        port:librsvg \
376 6 Joël Brogniart
                        port:gdk-pixbuf2
377 1
378 6 Joël Brogniart
use_configure           no
379 1
380 6 Joël Brogniart
fetch.type              svn
381 6 Joël Brogniart
svn.url                 svn://svn.gna.org/auto-qcm/trunk/
382 6 Joël Brogniart
worksrcdir              trunk
383 1
384 6 Joël Brogniart
build.args              AMCCONF=macports \
385 6 Joël Brogniart
                        BASEPATH=${prefix} \
386 6 Joël Brogniart
                        LATEX_FREE=1 \
387 6 Joël Brogniart
                        GCC_PP="${configure.cc} ${configure.cc_archflags}"
388 1
389 1
# When building from source, some files should be configured before.
390 1
# This pre-configuration use the make tool, not the configure tool.
391 1
pre-build {
392 6 Joël Brogniart
    system -W ${worksrcpath} "${build.cmd} version_files"
393 1
}
394 1
395 2 Joël Brogniart
# When first installed auto-multiple-choice could fail to launch with
396 1
# a "Format d'image non reconnu at /opt/local/lib/AMC/perl/AMC-gui.pl line 101"
397 1
# ("Unknown image format?").
398 1
# The following update cache command makes auto-multiple-choice happy.
399 2 Joël Brogniart
post-activate {
400 6 Joël Brogniart
    system "${prefix}/bin/gdk-pixbuf-query-loaders --update-cache 2>&1"
401 1
}
402 1
403 6 Joël Brogniart
destroot.args           AMCCONF=macports \
404 6 Joël Brogniart
                        BASEPATH=${prefix}
405 1
406 1
variant latex description "Add LaTeX support" {
407 1
    depends_run-append  port:texlive-latex-extra \
408 1
                        port:texlive-latex-recommended \
409 1
                        port:texlive-fonts-recommended \
410 2 Joël Brogniart
                        port:texlive-xetex
411 1
412 1
    build.args-delete   LATEX_FREE=1
413 1
414 1
    post-activate {
415 1
        system "${prefix}/bin/mktexlsr 2>&1"
416 1
    }
417 1
418 1
    post-deactivate {
419 1
        system "${prefix}/bin/mktexlsr 2>&1"
420 1
    }
421 1
}
422 2 Joël Brogniart
423 6 Joël Brogniart
default_variants        +latex
424 1
425 6 Joël Brogniart
livecheck.type          regex
426 6 Joël Brogniart
livecheck.url           http://svn.gna.org/viewcvs/auto-qcm/trunk/
427 6 Joël Brogniart
livecheck.version       ${svn.revision}
428 6 Joël Brogniart
livecheck.regex         {Revision (\d+)}</pre>
429 1
430 2 Joël Brogniart
h2. Installation de AMC
431 1
432 1
Une fois les fichiers de port mis en place, il faut générer l'index des nouveaux ports.
433 2 Joël Brogniart
<pre>cd ~/nix/macports
434 1
portindex</pre>
435 1
436 2 Joël Brogniart
Enfin, l'installation de la version de développement d'AMC peut être lancée.
437 1
438 1
<pre>sudo port install auto-multiple-choice-devel</pre>
439 1
440 2 Joël Brogniart
AMC est prêt à être utilisé.
441 1
442 2 Joël Brogniart
*Attention* : les versions standard et développement d'AMC ne peuvent être installées simultanément. Si une version standard était précédemment installée, il faut la désinstaller avant l'installation de la version de développement.
443 1
444 2 Joël Brogniart
<pre>sudo port uninstall auto-multiple-choice</pre>
445 1
446 2 Joël Brogniart
h2. Utilisation de AMC
447 1
448 2 Joël Brogniart
Vous pouvez lancer AMC à partir du terminal ou à partir de XQuartz.
449 1
450 2 Joël Brogniart
h3. Dans Terminal
451 1
452 2 Joël Brogniart
<pre>auto-multiple-choice-devel</pre>
453 1
454 2 Joël Brogniart
Cette commande lancera l'application XQuartz puis AMC.
455 1
456 2 Joël Brogniart
h3. Dans XQuartz
457 1
458 1
Lancer l'application XQuartz.
459 1
460 2 Joël Brogniart
!xquartz.png!
461 1
462 1
On peut tout de suite configurer XQuartz pour faciliter le lancement de AMC. Ouvrir le menu @Applications > Personnaliser…@.
463 1
464 2 Joël Brogniart
!xquartz-menu-applications-personnaliser.png!
465 1
466 2 Joël Brogniart
Dans la fenêtre de personnalisation, cliquer le bouton @Ajouter un élément@.
467 2 Joël Brogniart
468 2 Joël Brogniart
!xquartz-fenetre-personnaliser-menu-applications.png!
469 2 Joël Brogniart
470 2 Joël Brogniart
Mettre "@Auto Multiple Choice@" dans la colonne @Nom@ et "@auto-multiple-choice@" dans la colonne @Commande@ du nouvel item de menu.
471 2 Joël Brogniart
472 2 Joël Brogniart
!xquartz-fenetre-personnaliser-menu-applications-2.png!
473 1
474 1
Fermer la fenêtre de personnalisation puis choisir le menu @Applications > Auto Multiple Choix@.
475 1
476 1
!xquartz-menu-applications-amc.png!
477 1
478 1
La fenêtre de AMC doit apparaître.
479 1
480 1
!auto-multiple-choice-window.png!
481 1
482 1
À part pour l'impression, tout devrait marcher.
483 1
484 1
h2. Liens
485 1
      
486 1
* Auto Multiple Choice, "http://home.gna.org/auto-qcm/":http://home.gna.org/auto-qcm/.
487 1
* Auto Multiple Choice "(version 1.1.1) - installation sous OS X Mountain Lion (10.8)":http://project.auto-multiple-choice.net/projects/auto-multiple-choice/wiki/Installation_d'AMC_sous_OS_X_Mountain_Lion.
488 1
* MacPorts, "http://www.macports.org":http://www.macports.org.
489 1
* MacPorts, "Local Portfile Repositories":http://guide.macports.org/#development.local-repositories.
490 1
* MacPorts, "How to create portfiles for CPAN Perl modules":https://trac.macports.org/wiki/howto/cpan2port.
491 1
* Famille de polices Linux Libertine, "LinuxLibertine.org":http://www.linuxlibertine.org.
492 1
* XQuartz, http://xquartz.macosforge.org</a>.