matlab-support-0.0.19/0000755000000000000000000000000012106636051011441 5ustar matlab-support-0.0.19/defs.make0000644000000000000000000000027411472735665013244 0ustar # Installation paths for use in debian/rules of Matlab-related packages MATLAB_MDIR = /usr/share/matlab/site/m MATLAB_MEX_BINDIR = /usr/lib/matlab/site MATLAB_MEX_SRCDIR = /usr/src/matlab matlab-support-0.0.19/matlab.png0000644000000000000000000000615111651515013013410 0ustar PNG  IHDR00WsRGB #IDATh}y?{wE|mAeu7mK-h1c0F162RI D1 R3A,e{Yv~O8˒̙w9>ssܬٽe --#'/>|]4۾{X4F =6~ox~w>6*: Q t>gtON;tYFO)Łp#3',_=/\ e!t:Y;,#TDεq9\#?72xL< ȃ+'@̙[ :fmP.Rgh5`Ȕ)31J]BuЯh\.IMfЙ?,T*lC%A].LZ::O@̺eh>=> ۥ@:u}a;K@EvjfkimP&t  A#GcѠO%Neƍ[-oRu]!4B.Ȯ@/p0Ȑ?>&FhldUM7}W>.cWڔ7ߔAw A׫&ޅ/ѿ0:nzV!Miʔ7-z{s==bg9%w$8y (zLd>.[[Y;v,O?]L0OG;;a~R m?(':@O@1Il}| 4\ڱci:|8a{n"$K l(9 SKKFswQi33ZU-"ftEEw $5;=*BZH,U* m;QUQo~q8k;Khy;;diUd&u8TOS|!_|ڶNٺ#q~mc=5q3&IQn-]ߔR`篇 rz4I$AX%$ҚHz*`8f$A]3n !UsF B0q Xt6UN&p@C(q$$$}Ƨ:MVp{P{YG8bԴgQ-pD\:::CUe̤E4x1Z"ժ5KKd٩}sJ{0/'] GN;q_[XתL]2r/QN#I Iz3PU$] {}Yu; HtaRSfU#a) 8?Ylx<{z1ܭX|{zI;5$TIS!EӴj;H}\>;j;x9$K U*1`Dp`h`ϘkZ&Oiɒ$4SIR29R*]]=2|m;e3p t C!m P_ł_>oO@P P:@D1JUe?eW['q/jLLܥI$I)u+ʚuol'r MߪyVcjuޞ"pD^0OE8`#Y5^tr .aކjZM?(\q|)IJV=A]~^W6iDu N+!>2,<U@'a@W'M"\ pEYw[zzh,X&^geiG-{n/8F5 3>lC P!9ȅ\8_z /G%~/b\Sj"1b:k;>_.qos,A =\h!f@h-s M ʳ Tf zT˱td Xz)6䌮, but can be overridden with the --src-dir option. Any optional 'install' (--install-cmd) and 'clean' (--clean-cmd) are invoked in the source directory too. Moreover, this helper will also take any installed extensions from a default installation path /usr/share/matlab/site/m/, move them into /usr/lib/matlab/site/ and symlink back to the original location. These locations can be configured with the --m-dir and --mex-dir options respectively. Again, this step is optional and is only performed if a package actually installs extensions inot this location. EOT } print_version() { cat << EOT $scriptname $version Copyright (C) 2010-2011 Michael Hanke Licensed under GNU Public License version 3 or later. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Michael Hanke. EOT } print_help() { cat << EOT Usage: $scriptname [OPTIONS] Options: -h Print usage summary and option list. --help Print full help. --version Print version information and exit. --build-cmd Command to build the extensions in the source directory --install-cmd Command to install the extensions after building --clean-cmd Command to clean the source tree after installation. This is not the command that is executed in 'clean' mode. --src-dir Directory with the extension sources. This is also the directory in which build, install and clean commands get invoked. --mex-dir Target directory into which binary extensions get moved. --m-dir Target directory in which symlinks to binary extensions get created. --make Set default commands for 'build-cmd' (make), 'install-cmd' (make install DESTDIR=\$m_dir) and 'clean-cmd' (make distclean) if no specific command has been provided via the respective options. EOT } print_examples() { cat << EOT Examples: The following call can be used in a package's postinst script if it comes with a Matlab script 'build_matlab.m' that builds and installs its extension into the desired locations. The --src-dir option is used to point to a non-standard location of the extension sources. debian-matlab-mexhelper somepackagename install \ --src-dir /usr/src/dynare-matlab/mex/sources \ --build-cmd 'matlab -nodesktop -nodisplay -nojvm -r build_matlab' If a package installs extension sources into the standard location and builds its extensions using a Makefile that support the DESTDIR for installing the built extensions and a 'distclean' target it is sufficient to run the following. debian-matlab-mexhelper somepackagename install --make Otherwise it is also possible to fully customize all commands. debian-matlab-mexhelper difficultpackage install \ --build-cmd 'make -C src all toolbox MEXBIN="matlab-mex"' \ --install-cmd 'make -C src install && find . ! -wholename "./src" -name "*.mex?*" -print0 | xargs -0 -I {} cp -v --parent {} /usr/share/difficultpackage' \ --clean-cmd 'make -C src distclean toolbox-distclean && find . -name "*.mex?*" -delete' If a package uses $scriptname to install extensions into the standard location it can also be used to remove all MEX extensions and created symlinks when a package is removed from a system. To achieve this simply put the following call into a package's prerm script. debian-matlab-mexhelper packagename clean EOT } # Parse commandline options (taken from the getopt examples from the Debian util-linux package) # Note that we use `"$@"' to let each command-line parameter expand to a # separate word. The quotes around `$@' are essential! # We need CLOPTS as the `eval set --' would nuke the return value of getopt. CLOPTS=`getopt -o h --long help,version,build-cmd:,install-cmd:,clean-cmd:,src-dir:,mex-dir:,m-dir: -n "$scriptname" -- "$@"` if [ $? != 0 ] ; then echo "Terminating..." >&2 exit 1 fi # Note the quotes around `$CLOPTS': they are essential! eval set -- "$CLOPTS" while true ; do case "$1" in -h) print_help; exit 0;; --help) print_description; print_help; print_examples; exit 0;; --version) print_version; exit 0;; --build-cmd) shift; build_cmd=$1; shift;; --install-cmd) shift; install_cmd=$1; shift;; --clean-cmd) shift; clean_cmd=$1; shift;; --src-dir) shift; src_dir=$1; shift;; --mex-dir) shift; mex_dir=$1; shift;; --m-dir) shift; m_dir=$1; shift;; --make) shift; makefile_mode=1;; --) shift ; break ;; *) echo "Internal error! ($1)"; exit 1;; esac done if [ ! $# -eq 2 ]; then printf "Need exactly two arguments.\n\n" print_help exit 1 fi pkg=$1 mode=$2 if [ -z "$pkg" ]; then echo "No package name given." print_help exit 1 fi if [ -z "$mode" ]; then echo "No mode specified -- can be either 'install' or 'clean'." print_help exit 1 fi # we have a default idea of where the sources are if [ -z "$src_dir" ]; then src_dir="/usr/src/matlab/$pkg" fi # we have a default idea of where compile extensions shall live if [ -z "$mex_dir" ]; then mex_dir="/usr/lib/matlab/site/$pkg" fi # we have a default idea of where extensions shall be symlinked to if [ -z "$m_dir" ]; then m_dir="/usr/share/matlab/site/m/$pkg" fi # if in makefile mode set defaults if [ $makefile_mode -eq 1 ]; then if [ -z "$build_cmd" ]; then build_cmd="make" fi if [ -z "$install_cmd" ]; then install_cmd="make install DESTDIR=$m_dir" fi if [ -z "$clean_cmd" ]; then clean_cmd="make distclean" fi fi # handle clean mode first if [ "$mode" = "clean" ]; then # find MEX extension symlinks and remove [ -d $m_dir ] && find $m_dir/ -type l -name '*.mex?*' -delete # wipe out mexdir [ -d $mex_dir ] && rm -rf $mex_dir # done exit 0 fi # unknown mode if [ ! "$mode" = 'install' ]; then echo "Got unknown mode: $mode" exit 1 fi # get the config . /etc/matlab/debconf # create logfile logfile=$(mktemp ${TMPDIR:-/tmp}/${pkg}-mexbuild-$(date -u +%s).XXXXXXX) cat << EOT >> $logfile $(print_version) Attempt to build Matlab extensions Package name: $pkg Source directory: $src_dir MEX dir: $mex_dir M dir: $m_dir Build user (if any): $MATLAB_MEXBUILD_USER Build command: $build_cmd Install command: $install_cmd Clean command: $clean_cmd EOT echo "Attempt to build Matlab extensions:" >> $logfile # go into the source dir cd $src_dir echo "Building Matlab extensions (logfile at $logfile)" # if we need to use a dedicated user # (strip whitespace from the user name -- necessary to avoid failure # if the user name is basically empty but not length zero -- seems to happen # when retrieving the value from debconf under some weired non-reproducible # conditions) if [ -n "$(echo ${MATLAB_MEXBUILD_USER} | tr -d ' ')" ]; then chown -R $MATLAB_MEXBUILD_USER $src_dir echo "sudo -H -u $MATLAB_MEXBUILD_USER sh -c \"$build_cmd\"" >> $logfile sudo -H -u $MATLAB_MEXBUILD_USER sh -c "$build_cmd" 2>&1 >> $logfile chown -R root:root $src_dir else echo "$build_cmd" >> $logfile sh -c "$build_cmd" 2>&1 >> $logfile fi # now install if desired if [ -n "$install_cmd" ]; then echo "$install_cmd" >> $logfile sh -c "$install_cmd" 2>&1 >> $logfile fi # now clean if desired if [ -n "$clean_cmd" ]; then echo "$clean_cmd" >> $logfile sh -c "$clean_cmd" 2>&1 >> $logfile fi # look if installing created the m-path directory -- if so # move binary extensions out of the m-path and symlink back # However, if nothing got installed there we do not want to fail # in case a specific setup is required or intended [ ! -d $m_dir ] && exit 0 for ext in $(find $m_dir/ -type f -name '*.mex?*'); do # relative path to m-dir relpath=${ext#$m_dir/*} # extension location within the m-dir tree reldir=$(dirname $relpath) # create path in mex-dir mkdir -p $mex_dir/$reldir # move extension echo "mv $ext $mex_dir/$relpath" >> $logfile mv $ext $mex_dir/$relpath # might want to have nice function to figure out common prefix and to relative # symlinks echo "ln -s $mex_dir/$relpath $ext" >> $logfile ln -s $mex_dir/$relpath $ext done exit 0 matlab-support-0.0.19/debian/0000755000000000000000000000000012106677304012671 5ustar matlab-support-0.0.19/debian/matlab-support.dirs0000644000000000000000000000010611472742665016533 0ustar etc/matlab usr/share/matlab/site/m usr/lib/matlab/site usr/src/matlab matlab-support-0.0.19/debian/source/0000755000000000000000000000000011441023314014154 5ustar matlab-support-0.0.19/debian/source/format0000644000000000000000000000001511441023314015363 0ustar 3.0 (native) matlab-support-0.0.19/debian/po/0000755000000000000000000000000012106677304013307 5ustar matlab-support-0.0.19/debian/po/es.po0000644000000000000000000001530311570743263014262 0ustar # matlab-support po-debconf translation to Spanish # Copyright (C) 2011 Software in the Public Interest # This file is distributed under the same license as the matlab-support package. # # Changes: # - Initial translation # Francisco Javier Cuadrado , 2011 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor, lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: matlab-support 0.0.15\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-23 10:02+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Configuración de la interfaz de MATLAB" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Ubicación de la instalación de MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "La interfaz de MATLAB necesita conocer dónde está instalado MATLAB en este " "sistema. Esto se puede indicar como un único directorio, o en caso de varias " "instalaciones de MATLAB, como una expresión con comodines (cualquier " "expresión permitida en bash, incluyendo los operadores de coincidencia de " "patrones extendidos)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Si, por ejemplo, el ejecutable de MATLAB está instalado en «/opt/matlab76/" "bin/matlab», introduzca «opt/matlab76/». Si hay varias versiones de MATLAB " "instaladas, puede introducir «opt/matlab*» o una expresión parecida. Sólo se " "considerarán las coincidencias que realmente contengan un ejecutable de " "MATLAB. Por tanto, una expresión con comodines puede coincidir con más de un " "directorio de instalación de MATLAB sin efectos colaterales negativos." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Versión predeterminada de MATLAB:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Se encontraron las siguientes versiones de MATLAB en este sistema. Escoja " "cual de ellas debería ser la predeterminada de este sistema." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "No se ha encontrado ninguna instalación de MATLAB" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "No se ha encontrado ningún ejecutable de MATLAB en los directorios que " "indicó." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Este paquete necesita al menos una instalación local de MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Usuario autorizado para MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Si MATLAB sólo se puede ejecutar por un conjunto limitado de cuentas de " "usuario, indique una de ellas. Esta cuenta se utilizará por otros paquetes " "para generar las extensiones MEX durante la instalación." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Puede dejar este campo vacío si cualquier cuenta de usuario (incluyendo al " "administrador) puede ejecutar MATLAB." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "¿Desea renombrar las bibliotecas GCC de MATLAB?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "Una instalación de MATLAB se distribuye con copias de las bibliotecas " "dinámicas de GCC, que normalmente son de una versión antigua de GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Estas bibliotecas, a veces, pueden causar problemas." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Si escoge esta opción, las bibliotecas problemáticas se renombrarán " "añadiendo la extensión «.bak». Estas bibliotecas están ubicadas en el " "subdirectorio «sys/os/glnx86» o «sys/os/glnxa64» del directorio de " "instalación de MATLAB." matlab-support-0.0.19/debian/po/da.po0000644000000000000000000001330511566157314014240 0ustar # Danish translation matlab-support. # Copyright (C) matlab-support & nedenstående oversættere. # This file is distributed under the same license as the matlab-support package. # Joe Hansen (joedalton2@yahoo.dk), 2011. # msgid "" msgstr "" "Project-Id-Version: matlab-support\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-20 18:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "MATLAB-grænsefladekonfiguration" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Placering af MATLAB-installationer:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "MATLAB-brugerfladen skal vide hvor MATLAB er installeret på dit system. " "Dette kan angives som en enkel mappe eller i tilfælde af flere MATLAB-" "installationer, som et glob-udtryk (alle udtryk understøttet af bash, " "inklusiv operatører for udvidet mønstermatchning)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Hvis for eksempel den kørbare fil for MATLAB er installeret i /opt/matlab76/" "bin/matlab, så indtast venligst »/opt/matlab76/«. Hvis der er flere MATLAB-" "versioner installeret kan du indtaste »/opt/matlab*/« eller et lignende " "udtryk. Kun matchninger, som reelt indeholder en MATLAB-kørbar fil, vil " "blive medtaget. Derfor kan et glob-udtryk matche mere end bare MATLAB-" "installationsmappen uden negative sideeffekter." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Standardversion for MATLAB:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "De følgende MATLAB-versioner blev fundet på dette system. Vælg venligst " "hvilken der skal være standarden på dette system." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Ingen MATLAB-installation blev fundet" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "Ingen MATLAB-kørbare filer blev i fundet i mapperne du angav." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Denne pakke kræver mindst en lokal installation af MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Godkendt bruger for MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Hvis MATLAB kun kan startes af et begrænset sæt af brugerkontoer, så angiv " "venligst en af disse. Denne konto vil blive brugt af andre pakker til at " "bygge MEX-udvidelser ved installationen." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Du kan efterlade dette felt tomt, hvis en brugerkonto (inklusiv root) har " "tilladelse til at starte MATLAB." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Omdøb MATLAB's GCC-biblioteker?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "En MATLAB-installation leveres med kopier af GCC-dynamiske indlæsbare " "biblioteker, som typisk kommer fra en gammel version af GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Disse biblioteker kan undertiden medføre konflikter." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Hvis du vælger denne indstilling, vil de konflikramte biblioteker blive " "omdøbt med tilføjelse af endelsen ».bak«. Disse biblioteker er placreet i " "undermappen »sys/os/ginx86« eller undermappen »sys/os/glnxa64« i et MATLAB-" "installationstræ." matlab-support-0.0.19/debian/po/sv.po0000644000000000000000000001331011567112362014273 0ustar # Translation of matlab-support debconf template to Swedish # Copyright (C) 2011 Martin Bagge # This file is distributed under the same license as the matlab-support package. # # Martin Bagge , 2011 msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-24 23:24+0100\n" "Last-Translator: Martin Bagge / brother \n" "Language-Team: Swedish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Inställningar för MATLAB-gränssnittet" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Plats för MATLAB-instllation(er):" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "MATLAB-gränssnittet måste veta var MATLAB är installerat på systemet. Detta " "kan anges som en ensam katalog eller, ex när flera MATLAB-installationer " "finns tillgängliga, som ett glob-uttryck (alla uttryck som bash hanterar, " "inklusive mönstermatchande operatorer)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Om, exempelvis MATLABs körbara delar installeras i /opt/matlab76/bin/matlab " "ska \"/opt/matlab76\" anges. Om det finns flera MATLAB-versioner " "installerade kan du ange \"/opt/matlab*\" eller motsvarnade uttryck. Endast " "korrekta MATLAB-träffar kommer att användas. Det är därför möjligt att " "använda ett glob-uttryck som innefattar mer än bara MATLAB-installationer " "utan negativa följder." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Standard MATLAB-version:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Följande MATLAB-versioner hittades på detta system. Ange vilken av dessa som " "ska vara standardversion för MATLAB på detta system." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Ingen MATLAB-instalaltion hittades" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "Inga körbara MATLAB-filer hittades i katalogerna du angav." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Detta paket kräver åtminstone en lokal installation av MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Användare som får använda MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Om MATLAB endast kan köras av ett begränsat antal användarkonton ska " "åtminstone ett av dessa anges här. Detta konto används sedan av andra paket " "för att bygga MEX-utökningar vid installation." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Du kan lämna detta fält tomt om alla konton (inklusive root) får lov att " "köra MATLAB." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Ska MATLABs GCC-bibliotek byta namn?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "En MATLAB-installation levereras med kopior på GCC:s dynamiskt inlästa " "bibliotek, dessa kommer vanligen från en äldre version av GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Dessa bibliotek kan orsaka konflikter." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Om du väljer att byta namn på dem kommer \".bak\" läggas till i slutet. " "Dessa bibliotek finns i underkatalogerna \"sys/os/glnx86\" eller \"sys/os/" "glnxa64\" i MATLABs installationsträd." matlab-support-0.0.19/debian/po/POTFILES.in0000644000000000000000000000006311566157314015066 0ustar [type: gettext/rfc822deb] matlab-support.templates matlab-support-0.0.19/debian/po/fr.po0000644000000000000000000001363711570743216014270 0ustar # Translation of matlab-support debconf template to French # Copyright (C) 2011 Debian l10n French Team # This file is distributed under the same license as the matlab-support package. # Steve Petruzzello , 2011 # msgid "" msgstr "" "Project-Id-Version: matlab-support_0.0.14\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-25 11:19+0200\n" "Last-Translator: Steve Petruzzello \n" "Language-Team: French \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Configuration de l'interface de MATLAB" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Emplacement de MATLAB :" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "L'interface de MATLAB doit connaître l'emplacement de MATLAB sur ce système. " "Il peut s'agir d'un unique répertoire ou, dans le cas d'installations " "multiples, d'un motif générique (« glob ») (n'importe quelle expression " "bash, en incluant les opérateurs étendus de correspondance de motifs)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Si, par exemple, l'exécutable de MATLAB est installé dans /opt/matlab76/bin/" "matlab, veuillez indiquer « /opt/matlab76 ». Si plusieurs versions de MATLAB " "sont installées, vous pouvez indiquer « /opt/matlab* » ou une expression " "similaire. Seules les correspondances qui contiennent vraiment un exécutable " "de MATLAB seront prises en compte. Par conséquent, à une expression glob " "peut correspondre plus d'un répertoire d'installation de MATLAB sans effets " "de bord indésirables." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Version par défaut de MATLAB :" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Les versions ci-dessous de MATLAB ont été trouvées sur ce système. Veuillez " "choisir celle qui sera utilisée par défaut." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Installation de MATLAB introuvable" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "Aucun exécutable de MATLAB n'a été trouvé dans les répertoires indiqués." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Ce paquet requiert au moins une installation locale de MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Identifiant autorisé pour MATLAB :" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Si MATLAB ne peut être exécuté que par un groupe limité d'utilisateurs, " "veuillez choisir un de ces utilisateurs dont le compte sera utilisé par " "d'autres paquets pour construire les extensions MEX lors de l'installation." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Vous pouvez laisser ce champ vide si n'importe quel identifiant (root " "inclus) est autorisé à exécuter MATLAB." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Faut-il renommer les librairies GCC de MATLAB ?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "MATLAB est distribué avec des copies des bibliothèques dynamiques " "chargeables de GCC, qui proviennent typiquement d'une ancienne version de " "GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Ces bibliothèques peuvent parfois créer des conflits." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "En choisissant cette option, les bibliothèques conflictuelles seront " "renommées en ajoutant une extension « .bak ». Elles se trouvent dans le sous-" "répertoire « sys/os/glnx86 » ou « sys/os/glnxa64 » d'une installation de " "MATLAB." matlab-support-0.0.19/debian/po/ja.po0000644000000000000000000001474312106165700014242 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # victory , 2012. # msgid "" msgstr "" "Project-Id-Version: matlab-support\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2012-06-16 20:21+0000\n" "PO-Revision-Date: 2012-06-17 05:21+0900\n" "Last-Translator: victory \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "MATLAB インターフェイス設定" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "MATLAB がインストールされている場所:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "MATLAB インターフェイスはこのシステムのどこに MATLAB がインストールされている" "のか知る必要があります。これには単一ディレクトリ、あるいは 複数の MATLAB がイ" "ンストールされている場合はグロブ表現を指定することができます (bash でサポート" "されている表現が、拡張パターンマッチ演算子も含めてすべて使えます)。" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "例えば MATLAB 実行ファイルが /opt/matlab76/bin/matlab にインストールされている" "場合は \"/opt/matlab76\" を入力してください。 MATLAB の複数のバージョンがイン" "ストールされている場合は、\"/opt/matlab*\" のような表現を入力できます。マッチ" "するもののうち、MATLAB 実行ファイルが実際に存在するものだけが対象となります。" "したがって、グロブ表現は MATLAB がインストールされているディレクトリ以外にもマ" "ッチしますが悪影響はありません。" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "デフォルトの MATLAB バージョン:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "このシステム上に MATLAB の以下のバージョンが見つかりました。このシステムのデフ" "ォルトの MATLAB として使うものを選択してください。" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "インストールされている MATLAB が見つかりませんでした" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "指定されたディレクトリに MATLAB の実行ファイルが見つかりませんでした。" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "" "このパッケージには、ローカルにインストールされている MATLAB が最低 1 つ必要です。" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "MATLAB の承認ユーザ:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "MATLAB が限られたユーザアカウント群からのみ起動できる場合、その 1 つを指定して" "ください。このアカウントは他のパッケージがインストール時に MEX の拡張をビルド" "するのに使用されます。" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "(root を含む) どのアカウントでも MATLAB を起動できるようにする場合は、これを空" "白にしてください。" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "MATLAB の GCC ライブラリを改名しますか?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "インストールされている MATLAB に、GCC の動的ロード可能なライブラリが同梱されて" "いたものがあります。これは通常、GCC の古いバージョンからきたものです。" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "こういったライブラリは競合の原因となることがあります。" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "このオプションを選択すると、競合するライブラリは後ろに \".bak\" 拡張子を付加し" "て改名されます。このライブラリは MATLAB のインストール先ツリーの " "\"sys/os/glnx86\" または \"sys/os/glnxa64\" サブディレクトリに置かれます。" matlab-support-0.0.19/debian/po/pt.po0000644000000000000000000001377411572417427014312 0ustar # MATLAB's debconf messages in Portuguese. # Copyright (C) 2011 matlab-support's copyright holder # This file is distributed under the same license as the matlab-support package. # Miguel Figueiredo , 2011. # msgid "" msgstr "" "Project-Id-Version: matlab-support 0.0.14\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-06-01 18:59+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Interface de configuração MATLAB" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Localização da(s) instalação(ões) MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "O interface MATLAB necessita saber onde está instalado o MATLAB neste " "sistema. Isto pode ser especificado como um único directório ou, no caso de " "ter várias instalações de MATLAB, como uma expressão glob (qualquer " "expressão bash suportada, incluindo operadores estendidos de padrões)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Se, por exemplo, o executável MATLAB estiver em /opt/matlab76/bin/matlab', " "por favor introduza \"/opt/matlab76\"'. Se estiverem instaladas várias " "versões de MATLABi, pode introduzir \"/opt/matlab*\" ou uma expressão " "similar). Apenas será considerado o que coincidir com o que na realidade " "contiver um executável MATLAB. Por isso uma expressão glob pode coincidir " "com mais do que directórios de instalação de MATLAB sem efeitos secundários " "negativos." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Versão MATLAB predefinida:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Foram encontradas, neste sistema, as seguintes versões de MATLAB. Por favor " "escolha qual deve servir como o MATLAB predefinido neste sistema." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Não foram encontradas instalações de MATLAB" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "Não foram encontrados executáveis de MATLAB nos directórios que especificou." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Este pacote necessita de pelo menos uma instalação local de MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Utilizados autorizado para MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Se o MATLAB apenas puder ser lançado por um conjunto limitado de contas de " "utilizador, por favor especifique uma dessas. Esta conta será utilizada por " "outros pacotes para compilar extensões MEX durante a instalação." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Pode deixar este campo vazio se qualquer conta (incluindo root) estiver " "autorizada a lançar o MATLAB." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Renomear as bibliotecas GCC do MATLAB?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "Uma instalação de MATLAB é distribuída com cópias de bibliotecas GCC " "carregadas dinamicamente, que tipicamente vêm de uma versão antiga do GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Estas bibliotecas por vezes causam conflitos." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Se escolher esta opção, as bibliotecas em conflito serão renomeadas " "acrescentando uma extensão \".bak\". Estas bibliotecas estão localizadas no " "sub-directório \"sys/os/glnx86\" ou em \"sys/os/glnxa64\" da árvore da sua " "instalação de MATLAB." #~ msgid "UNIX user account able to launch MATLAB:" #~ msgstr "Conta UNIX de utilizador capaz de lançar o MATLAB:" matlab-support-0.0.19/debian/po/ru.po0000644000000000000000000001610011566157314014276 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the matlab-support package. # # Yuri Kozlov , 2011. msgid "" msgstr "" "Project-Id-Version: matlab-support 0.0.15\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-18 21:25+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Настройка интерфейса MATLAB" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Расположение установки(ок) MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "Интерфейсу MATLAB требуется указать место установки MATLAB в системе. Можно " "задать единственный каталог или, если есть несколько установок MATLAB, " "шаблон (любое выражение, поддерживаемое bash, включающее расширенные " "шаблонные операторы поиска совпадений)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Если, например, полный путь исполняемого файла MATLAB — /opt/matlab76/bin/" "matlab, то введите «/opt/matlab76». Если установлено несколько версий " "MATLAB, то можно указать «/opt/matlab*» (или похожее выражение). Будут " "учтены только те совпадения, которые действительно содержат исполняемый файл " "MATLAB, всё остальное игнорируется. Поэтому в шаблоне без проблем можно " "указывать не только каталоги установки MATLAB." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Версия MATLAB по умолчанию:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "В системе найдено несколько версий MATLAB. Выберите версию, которая должна " "использоваться в качестве системной версии MATLAB по умолчанию." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "MATLAB не найден" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "В указанных вами каталогах исполняемых файлов MATLAB не найдено." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Для данного пакета требуется хотя бы одна установленная версия MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Пользователь с правами запуска MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Если MATLAB разрешено запускать ограниченному числу учётных записей, то " "укажите одну из них. Эта учётная запись будет использоваться другими " "пакетами для сборки расширений MEX при установке." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Если MATLAB можно запускать из-под любой учётной записи (даже root), то " "оставьте поле пустым." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Переименовать библиотеки MATLAB GCC?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "В установке MATLAB есть копии динамически загружаемых библиотек GCC, обычно " "старой версии." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Иногда, из-за этих библиотек могут возникать проблемы." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Если вы ответите утвердительно, то к именам проблемных библиотек будет " "добавлено расширение «.bak». Эти библиотеки расположены в подкаталоге «sys/" "os/glnx86» или «sys/os/glnxa64» дерева установки MATLAB." #~ msgid "UNIX user account able to launch MATLAB:" #~ msgstr "Учётная запись UNIX для запуска MATLAB:" matlab-support-0.0.19/debian/po/it.po0000644000000000000000000001403012106252646014257 0ustar # Italian translation of matlab-support debconf messages. # Copyright (C) 2012, matlab-support package copyright holder. # This file is distributed under the same license as the matlab-support package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: matlab-support\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2012-06-02 17:42+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Configurazione dell'interfaccia di MATLAB" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Posizione dell'installazione (o installazioni) di MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "L'interfaccia MATLAB deve sapere dove è installato MATLAB nel sistema. Ciò " "può essere specificato come directory singola o, in caso di più " "installazioni di MATLAB, come un'espressione con metacaratteri (qualsiasi " "espressione gestita da bash, inclusi gli operatori per corrispondenza a " "modelli estesa)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Se, per esempio, l'eseguibile di MATLAB è installato in " "/opt/matlab76/bin/matlab, inserire \"/opt/matlab76\". Se ci sono più versioni " "di MATLAB installate, si può inserire \"/opt/matlab*\" o un'espressione " "simile. Solo le corrispondenze che contengono davvero un eseguibile MATLAB " "verranno prese in considerazione. Perciò un'espressione con metacaratteri " "può corrispondere a più directory, e non solo a quelle delle installazioni " "di MATLAB, senza effetti collaterali negativi." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Versione di MATLAB predefinita:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Sul sistema sono state trovate le versioni di MATLAB seguenti. Selezionare " "quale deve essere quella predefinita per MATLAB su questo sistema." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Nessuna installazione di MATLAB trovata" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "Nelle directory specificate non è stato trovato alcun eseguibile per MATLAB." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Questo pacchetto richiede almeno una installazione locale di MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Utente autorizzato per MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Se MATLAB può essere avviato da un insieme limitato di account utente, " "specificarne uno. Questo account verrà usato da altri pacchetti per " "compilare le estensioni MEX al momento dell'installazione." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Questo campo può essere lasciato vuoto se qualsiasi account utente (incluso " "root) ha il permesso di avviare MATLAB." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Rinominare le librerie GCC di MATLAB?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "Un'installazione MATLAB viene fornita con copie delle librerie caricabili " "dinamiche GCC, che tipicamente provengono da una vecchia versione di GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Queste librerie a volte causano conflitti." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Se si abilita questa opzione, le librerie che causano il conflitto vengono " "rinominate aggiungendovi un'estensione \".bak\". Queste librerie sono " "posizionate nella sottodirectory \"sys/os/glnx86\" o \"sys/os/glnxa64\" " "dell'albero di installazione di MATLAB." matlab-support-0.0.19/debian/po/cs.po0000644000000000000000000001344111566157314014262 0ustar # Czech PO debconf template translation of matlab-support. # Copyright (C) 2010 Michal Simunek # This file is distributed under the same license as the matlab-support package. # Michal Simunek , 2011. # msgid "" msgstr "" "Project-Id-Version: matlab-support 0.0.15\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-20 17:31+0200\n" "Last-Translator: Michal Simunek \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Nastavení rozhraní MATLAB" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Umístění instalace(cí) MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "Rozhraní MATLAB potřebuje znát, kde je na tomto systému nainstalován MATLAB. " "Umístění lze zadat jako jeden adresář nebo, v případě několika instalací " "MATLAB, jako dávkový výraz (všechny výrazy, které podporuje bash, včetně " "rozšířených tvarů operátorů)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Je-li například spouštěč pro MATLAB nainstalován v /opt/matlab76/bin/matlab " "zadejte \"/opt/matlab76\". Máte-li nainstalovaných více verzí MATLAB, můžete " "zadat \"/opt/matlab*\" či podobný výraz. V úvahu budou brány pouze ty, které " "skutečně obsahují spouštěč pro MATLAB. Dávkové výrazy mohou tedy obsahovat " "více než jeden adresář s instalací MATLAB bez negativních dopadům s tím " "spojených." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Výchozí verze MATLAB:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Na tomto systému byly nalezeny následující verze MATLAB. Vyberte si prosím " "jednu z nich, která se na tomto systému bude používat jako výchozí." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Žádná instalace MATLAB nebyla nalezena" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "V adresářích, které jste zadali nebyl nalezen žádný spouštěč pro MATLAB." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Tento balíček vyžaduje alespoň jednu místní instalaci MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Oprávněný uživatel pro MATLAB:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "V případě, že MATLAB může spouštět pouze omezená skupina uživatelů, zadejte " "prosím jednoho z nich. Tohoto uživatele budou při instalaci používat ostatní " "balíčky k sestavení rozšíření MEX." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Pokud může MATLAB spouštět jakýkoli uživatel (včetně uživatele root), můžete " "políčko ponechat prázdné." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Přejmenovat GCC knihovny MATLAB?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "Instalace MATLAB je dodávána s dynamicky zaveditelnými knihovnami GCC, které " "běžně pocházejí ze starší verze GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Tyto knihovny občas způsobují konflikty." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Zvolíte-li tuto možnost, konfliktní knihovny budou přejmenovány přidáním " "koncovky \".bak\". Tyto knihovny se nacházejí v podadresáři instalace MATLAB " "\"sys/os/glnx86\" nebo \"sys/os/glnxa64\"." matlab-support-0.0.19/debian/po/nl.po0000644000000000000000000001356011567112353014263 0ustar # Dutch translation of matlab-support debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the matlab-support package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: matlab-support 0.0.15\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-17 10:32+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "Configuratie van de MATLAB-interface" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Locatie van de MATLAB-installatie(s):" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "De MATLAB-interface moet weten waar MATLAB op dit systeem is geïnstalleerd. " "Dit kan worden opgegeven als een enkele map of, indien er meerdere MATLAB-" "installaties zijn, als een glob-uitdrukking (elke door bash ondersteunde " "uitdrukking is toegestaan, inclusief de 'extended pattern matching'-" "operatoren)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Bijvoorbeeld: Als het MATLAB-programma in /opt/matlab76/bin/matlab is " "geïnstalleerd dient u \"/opt/matlab76\" in te voeren. Als er meerdere " "versies van MATLAB zijn geïnstalleerd kunt u \"/opt/matlab*\" of een " "soortgelijke uitdrukking invoeren. Alleen resultaten die echt een MATLAB-" "programma bevatten worden meegenomen. Daarom is het niet erg als een glob-" "uitdrukking naast MATLAB-installaties ook andere resultaten geeft." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Standaard MATLAB-versie:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "De volgende versies van MATLAB zijn op dit systeem gevonden. Selecteer de " "versie die als de standaard MATLAB van dit systeem moet fungeren." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Geen MATLAB-installatie gevonden" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "Er zijn geen uitvoerbare bestanden van MATLAB gevonden in de opgegeven " "mappen." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Dit pakket vereist ten minste één lokale installatie van MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Geautoriseerde MATLAB-gebruiker:" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Indien MATLAB alleen door een beperkt aantal gebruikersaccounts kan worden " "opgestart dient u een geautoriseerde inlognaam op te geven. Deze account " "wordt door andere pakketten gebruikt om bij installatie MEX-uitbreidingen te " "maken." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "U kunt dit veld leeg laten wanneer u alle gebruikersaccounts (inclusief de " "beheerdersaccount 'root') wilt toestaan om MATLAB op te starten." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "MATLAB's GCC-bibliotheken hernoemen?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "Een MATLAB-installatie bevat kopieën van dynamische bibliotheken van GCC. " "Deze komen meestal uit een oude versie van GCC." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Deze bibliotheken veroorzaken soms conflicten." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Als u hiervoor kiest worden de conflicterende bibliotheken hernoemt door \"." "bak\" achter hun bestandsnaam te zetten. Deze bibliotheken bevinden zich in " "de \"sys/os/glnx86\"- of \"sys/os/glnxa64\"-submap van een MATLAB-" "installatie." matlab-support-0.0.19/debian/po/de.po0000644000000000000000000001411311567354146014245 0ustar # German translation of matlab-support. # Copyright (C) Michael Hanke, 2010. # This file is distributed under the same license as the matlab-support package. # Translation Chris Leick , 2011. # msgid "" msgstr "" "Project-Id-Version: matlab-support 0.0.15\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: 2011-05-08 18:15+0200\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "MATLAB-Schnittstellenkonfiguration" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "Speicherort der MATLAB-Installation(en):" # http://en.wikipedia.org/wiki/Glob_%28programming%29 #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" "Die MATLAB-Schnittstelle muss wissen, wo auf dem System MATLAB installiert " "ist. Dies kann als einzelnes Verzeichnis angegeben werden oder im Fall " "mehrerer MATLAB-Installationen als Glob-Ausdruck (jeder durch die Bash " "unterstützte Ausdruck, einschließlich erweiterter " "Mustervergleichsoperatoren)." #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" "Falls zum Beispiel das MATLAB-Programm in /opt/matlab76/bin/matlab " "installiert ist, geben Sie bitte »/opt/matlab76« ein. Falls mehrere MATLAB-" "Versionen installiert sind, können Sie »/opt/matlab*« oder einen ähnlichen " "Ausdruck eingeben. Nur Treffer, die wirklich die ausführbare MATLAB-" "Binärdatei enthalten, werden berücksichtigt. Daher darf ein Glob-Ausdruck " "ohne negative Nebeneffekte auf mehr Verzeichnisse als nur solche mit MATLAB-" "Installationen zutreffen." #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "Standard-MATLAB-Version:" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" "Die folgenden MATLAB-Versionen wurden auf diesem System gefunden. Bitte " "wählen Sie aus, welche als Standard-MATLAB auf diesem System dienen soll." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "Keine MATLAB-Installation gefunden" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" "Es wurden in den von Ihnen angegebenen Verzeichnissen keine MATLAB-Programme " "gefunden." #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "Dieses Paket benötigt mindestens eine lokale Installation von MATLAB." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "Autorisierter Benutzer für MATLAB:" # http://en.wikipedia.org/wiki/MEX_file #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" "Falls MATLAB nur durch eine begrenzte Auswahl von Benutzerkonten gestartet " "werden kann, geben Sie bitte eines davon an. Dieses Konto wird von anderen " "Paketen benutzt, um MEX-Erweiterungen während der Installation zu bauen." #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" "Sie können dieses Feld leer lassen, falls es beliebigen Benutzerkonten " "(einschließlich Root) erlaubt ist, MATLAB zu starten." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "Die GCC-Bibliotheken von MATLAB umbenennen?" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" "Eine MATLAB-Installation wird mit Kopien dynamisch ladbarer GCC-Bibliotheken " "ausgeliefert, die typischerweise von einer alten GCC-Version stammen." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "Diese Bibiotheken verursachen manchmal Konflikte." #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" "Falls Sie sich für diese Option entscheiden, werden die problematischen " "Bibliotheken durch Anhängen der Erweiterung ».bak« umbenannt. Diese " "Bibliotheken liegen in den Unterverzeichnissen »sys/os/glnx86« oder »sys/os/" "glnxa64« des MATLAB-Installationsverzeichnisses." matlab-support-0.0.19/debian/po/templates.pot0000644000000000000000000000741711566157314016045 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: matlab-support@packages.debian.org\n" "POT-Creation-Date: 2011-05-17 08:01+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: title #. description #: ../matlab-support.templates:2001 msgid "MATLAB interface configuration" msgstr "" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "Location of MATLAB installation(s):" msgstr "" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "The MATLAB interface needs to know where MATLAB is installed on this system. " "This can be specified as a single directory or, in case of multiple MATLAB " "installations, as a glob expression (any expression supported by bash, " "including extended pattern matching operators)." msgstr "" #. Type: string #. Description #: ../matlab-support.templates:3001 msgid "" "If, for example, the MATLAB executable is installed in /opt/matlab76/bin/" "matlab, please enter \"/opt/matlab76\". If there are multiple MATLAB " "versions installed, you can enter \"/opt/matlab*\" or a similar expression. " "Only matches that really contain a MATLAB executable will be considered. " "Therefore, a glob expression may match more than just MATLAB installation " "directories without negative side effects." msgstr "" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "Default MATLAB version:" msgstr "" #. Type: select #. Description #: ../matlab-support.templates:4001 msgid "" "The following MATLAB versions were found on this system. Please select which " "one should serve as the default MATLAB on this system." msgstr "" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB installation found" msgstr "" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "No MATLAB executables were found in the directories you specified." msgstr "" #. Type: error #. Description #: ../matlab-support.templates:5001 msgid "This package requires at least one local installation of MATLAB." msgstr "" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "Authorized user for MATLAB:" msgstr "" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "If MATLAB can only be launched by a limited set of user accounts, please " "specify one of these. This account will be used by other packages to build " "MEX extensions upon installation." msgstr "" #. Type: string #. Description #: ../matlab-support.templates:6001 msgid "" "You may leave this field empty if any user account (including root) is " "allowed to launch MATLAB." msgstr "" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "Rename MATLAB's GCC libraries?" msgstr "" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "A MATLAB installation is shipped with copies of GCC dynamic loadable " "libraries, which typically come from an old version of GCC." msgstr "" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "These libraries sometimes cause conflicts." msgstr "" #. Type: boolean #. Description #: ../matlab-support.templates:7001 msgid "" "If you choose this option, the conflicting libraries will be renamed by " "appending a \".bak\" extension. These libraries are located in the \"sys/os/" "glnx86\" or \"sys/os/glnxa64\" subdirectory of a MATLAB installation tree." msgstr "" matlab-support-0.0.19/debian/copyright0000644000000000000000000000254211725650113014622 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: matlab-support Upstream-Contact: NeuroDebian team Source: http://neuro.debian.net Files: * Copyright: 2010-2012 NeuroDebian Team License: GPL-3+ On Debian systems the full text of the GNU General Public License can be found in the `/usr/share/common-licenses/GPL-3' file. Files: matlab.png Copyright: This has been placed into the public domain. License: public-domain This icon has been derived from this source . http://en.wikipedia.org/wiki/File:Matlab_Logo.png . It is a rendering of the first eigenfunction of the L-shaped membrane, resembling (but not identical to) the MATLAB's logo trademarked by MathWorks Inc. . As documented on the above webpage, the original rendering has been placed into the public domain by stating: . I, the copyright holder of this work, release this work into the public domain. This applies worldwide. In some countries this may not be legally possible; if so: I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law. . The file included in this package is identical, but re-sampled to a resolution of 48x48 pixels, and is also placed into the public domain (under the same conditions as the original). matlab-support-0.0.19/debian/matlab-support.postrm0000644000000000000000000000073511471371377017123 0ustar #!/bin/sh set -e case "$1" in purge) # clean debconf settings if [ -e /etc/matlab/debconf ]; then rm /etc/matlab/debconf fi ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 matlab-support-0.0.19/debian/matlab-support-dev.docs0000644000000000000000000000003111510634215017253 0ustar debian/README.Developers matlab-support-0.0.19/debian/matlab-support-dev.install0000644000000000000000000000004311511102760017770 0ustar defs.make usr/share/matlab/debian/ matlab-support-0.0.19/debian/matlab-support.install0000644000000000000000000000024111651516043017224 0ustar debconf.template usr/share/matlab/debian debian-matlab-mexhelper usr/sbin matlab.png usr/share/icons/hicolor/48x48/apps/ matlab.desktop /usr/share/applications/ matlab-support-0.0.19/debian/matlab-support.lintian-overrides0000644000000000000000000000025211651516373021224 0ustar # this command is available via the alternatives mechanism after installation matlab-support: desktop-command-not-in-package usr/share/applications/matlab.desktop matlab matlab-support-0.0.19/debian/control0000644000000000000000000000355412106635135014277 0ustar Source: matlab-support Section: devel Priority: optional Maintainer: NeuroDebian Team Uploaders: Michael Hanke , Yaroslav Halchenko Build-Depends: debhelper (>= 7.0.50~), po-debconf, help2man Standards-Version: 3.9.3 Vcs-Browser: http://git.debian.org/?p=pkg-exppsy/matlab-support.git Vcs-Git: git://git.debian.org/git/pkg-exppsy/matlab-support.git Package: matlab-support Section: contrib/devel Architecture: all Depends: debconf (>=1.3.22) | cdebconf (>= 0.43), ${misc:Depends}, libxp6, sudo Recommends: libstdc++6-4.4-dev | libstdc++-dev Conflicts: matlab (<= 0.0.14~) Replaces: matlab (<= 0.0.14~) Description: distro integration for local MATLAB installations This package does not provide MATLAB. Instead, it configures an existing MATLAB installation to integrate more comfortably in a Debian installation. . Currently it provides /usr/bin/matlab through the alternatives system, offers to work around incompatibilities between the libraries bundled with MATLAB and system libraries, and provides a helper utility meant to be used by other packages to compile MEX extensions. . Install this if you would like your MATLAB installation to behave more like an ordinary Debian package. Other packages may depend on this one if they install MATLAB code, for example in order to compile MEX extensions. Package: matlab-support-dev Section: devel Architecture: all Depends: ${misc:Depends} Conflicts: matlab-dev (<= 0.0.14~) Replaces: matlab-dev (<= 0.0.14~) Description: helpers for packages building MATLAB toolboxes This package provides a Makefile snippet (analogous to the one used for Octave) that configures the locations for architecture independent M-files, binary MEX-extensions, and their corresponding sources. This package can be used as a build-dependency by other packages shipping MATLAB toolboxes. matlab-support-0.0.19/debian/changelog0000644000000000000000000001701412106635237014545 0ustar matlab-support (0.0.19) unstable; urgency=low * Debconf translation updates and additions - Added reviewed and updated Japanese debconf translation (thanks to Victory; Closes: #691775). - Added Italian translation. Thanks to Beatrice (Closes: #675681). * During (re-)configure, always display the Debconf question for selecting the default Matlab version when the old default version vanished (old behavior) or whenever there is more than one version to choose from (new behavior). This should make manual calls to update-alternatives obsolete when only adding a new Matlab installation that shall become default, but the old default version is still around. Thanks to Sébastien Villemot for the report (Closes: #666087). * Improve desktop file - icon is now specified using the absolute path as recommended - startup notification is improved by using appropriate StartupWMClass settings. This should address launchpad bug #654912. * Remove obsolete XS-DM-Upload-Allowed flag from debian/control. -- Michael Hanke Wed, 13 Feb 2013 08:02:45 +0100 matlab-support (0.0.18) unstable; urgency=low * Update debian/copyright. * Make debian-matlab-mexhelper be more robust to whitespace in the MATLAB user variable. * Bumped Standards-version to 3.9.3; no changes necessary. -- Michael Hanke Wed, 07 Mar 2012 13:18:49 +0100 matlab-support (0.0.17) unstable; urgency=low * Add .desktop file and icon for MATLAB. Thanks to Sébastien Villemot for the ignition pulse (Closes: #646527). * Improve DEP5 compliance of debian/copyright. -- Michael Hanke Tue, 25 Oct 2011 14:17:30 +0200 matlab-support (0.0.16) unstable; urgency=low * For compatibility with older mktemp (e.g. as on lenny) -- do not rely on having --tmpdir, use ${TMPDIR:-/tmp} instead -- Yaroslav Halchenko Tue, 26 Jul 2011 14:22:20 -0400 matlab-support (0.0.15) unstable; urgency=low * i18n release: Thanks to all translators and especially Christian Perrier for coordinating this effort. [ Christian Perrier ] * Debconf templates and debian/control reviewed by the debian-l10n- english team as part of the Smith review project. Closes: #626460 * [Debconf translation updates] * Russian (Yuri Kozlov). Closes: #627204, #623806 * Danish (Joe Hansen). Closes: #627374 * Czech (Michal Simunek). Closes: #627438 * Dutch; (Jeroen Schot). Closes: #627827 * Swedish (Martin Bagge / brother). Closes: #627850 * German (Chris Leick). Closes: #627953 * French (Steve Petruzzello). Closes: #628577 * Spanish; (Francisco Javier Cuadrado). Closes: #628556 * Portuguese (Miguel Figueiredo). Closes: #629126 [ Michael Hanke ] * Japanese debconf translation (Hideki Yamane). Closes: #629851 * Bumped Standards-version to 3.9.1; no changes necessary. -- Michael Hanke Sat, 25 Jun 2011 08:04:25 -0400 matlab-support (0.0.14) unstable; urgency=low * First release targeting Debian proper (Closes: #608922). * Rename source and binary packages to matlab-support*, after discussion on debian-devel. -- Michael Hanke Wed, 05 Jan 2011 09:15:51 -0500 matlab (0.0.13) unstable; urgency=low * Do not set Makefile-related build/install/clean command by default. Instead the default is to do nothing. The old behavior can be restored by using the '--make' option. * Test whether whether the installation directory actually exists before trying to remove things from it in clean mode. This should help recovering from partial installations. * Do not attempt to move MEX extensions from the M-DIR into the MEX-DIR if they were not installed into the intended locations. * Add runtime dependency on sudo. * Improve documentation: Added examples to manpage, added README.Developers for package maintainers. * Add README.source with a justification for placing this source package into 'main'. -- Michael Hanke Tue, 04 Jan 2011 10:26:02 -0500 matlab (0.0.12) unstable; urgency=low * Prevent expansion of glob expression for Matlab search. -- Michael Hanke Tue, 21 Dec 2010 20:11:21 -0500 matlab (0.0.11) unstable; urgency=low * Fail properly in non-interactive mode instead of going into infinite loop when no Matlab is found. -- Michael Hanke Thu, 16 Dec 2010 14:53:47 -0500 matlab (0.0.10) unstable; urgency=low * Again mktemp fix. Some Ubuntu version insists on having X's trailing with no additional extension. Thanks to Daniel Kimberg for repeated reports. -- Michael Hanke Sat, 11 Dec 2010 13:00:05 -0500 matlab (0.0.9) unstable; urgency=low * Extend mktemp filename template in debian-matlab-mexhelper. On some systems mktemp demands at least six X's. Now it has seven. -- Michael Hanke Mon, 29 Nov 2010 16:50:53 -0500 matlab (0.0.8) unstable; urgency=low * Move the source package to 'main', but keep the matlab package itself in contrib. Add an additional 'matlab-dev' package to ship the configuration Makefile snippet. This package is placed into 'main' to allow other source packages to build-depend on it. * Add dependency to libxp6 -- required by Matlab. * Add recommends to libstdc++-dev package to matlab package. This is necessary to be able to build MEX extensions. Thanks to Guillaume Flandin. -- Michael Hanke Sat, 27 Nov 2010 10:54:13 -0500 matlab (0.0.7) UNRELEASED; urgency=low * Guess the Matlab install directory upon fresh installation. * Catch and handle few error conditions in the debconf handling. -- Michael Hanke Wed, 24 Nov 2010 20:52:44 -0500 matlab (0.0.6) unstable; urgency=low * Install /usr/lib/matlab/site as MEX destination directory. -- Michael Hanke Tue, 23 Nov 2010 08:46:37 -0500 matlab (0.0.5) UNRELEASED; urgency=low * MEX helper now also deals with installing, cleaning and symlinking extensions. * -- Michael Hanke Tue, 23 Nov 2010 08:20:25 -0500 matlab (0.0.4) UNRELEASED; urgency=low * Install /usr/src/matlab as a location to put MEX extension sources. * New helper to build Matlab extensions in a package's postinst script. -- Michael Hanke Mon, 22 Nov 2010 09:38:58 -0500 matlab (0.0.3) UNRELEASED; urgency=low * Debconf questions are now processed in a state machine to allow users to go back and change answers to previous questions. Included basic input validation and selection of a default Matlab version, in case of multiple installations. * Introduce configuration at /etc/matlab. * Add debconf templates for dedicated Matlab user account and Matlab GCC library backup. These changes are inspired by the dynare-matlab package and have been adopted from it. * Add Octave-like makefile snippet to allow source packages to deduce the installation paths. -- Michael Hanke Sat, 20 Nov 2010 09:22:59 -0500 matlab (0.0.2) UNRELEASED; urgency=low * ENH: revert to calling matlab to figure out its version if bin/mex lacks that information (necessary for older Matlabs such as R12.1) -- Yaroslav Halchenko Thu, 28 Oct 2010 17:15:27 -0400 matlab (0.0.1) UNRELEASED; urgency=low * Initial release. * Add package conflict to 'texlive-lang-polish' that also provides /usr/bin/mex. -- Michael Hanke Tue, 03 Aug 2010 21:04:00 -0400 matlab-support-0.0.19/debian/matlab-support.manpages0000644000000000000000000000003211472735665017365 0ustar debian-matlab-mexhelper.1 matlab-support-0.0.19/debian/matlab-support.templates0000644000000000000000000000503011566157314017564 0ustar # These templates have been reviewed by the debian-l10n-english # team # # If modifications/additions/rewording are needed, please ask # debian-l10n-english@lists.debian.org for advice. # # Even minor modifications require translation updates and such # changes should be coordinated with translators and reviewers. Template: matlab-support/title Type: title _description: MATLAB interface configuration Template: matlab-support/matlab-install-glob Type: string _Description: Location of MATLAB installation(s): The MATLAB interface needs to know where MATLAB is installed on this system. This can be specified as a single directory or, in case of multiple MATLAB installations, as a glob expression (any expression supported by bash, including extended pattern matching operators). . If, for example, the MATLAB executable is installed in /opt/matlab76/bin/matlab, please enter "/opt/matlab76". If there are multiple MATLAB versions installed, you can enter "/opt/matlab*" or a similar expression. Only matches that really contain a MATLAB executable will be considered. Therefore, a glob expression may match more than just MATLAB installation directories without negative side effects. Template: matlab-support/default-version Type: select Choices: ${choices} _Description: Default MATLAB version: The following MATLAB versions were found on this system. Please select which one should serve as the default MATLAB on this system. Template: matlab-support/no-matlab-found Type: error _Description: No MATLAB installation found No MATLAB executables were found in the directories you specified. . This package requires at least one local installation of MATLAB. Template: matlab-support/mexbuild-user Type: string _Description: Authorized user for MATLAB: If MATLAB can only be launched by a limited set of user accounts, please specify one of these. This account will be used by other packages to build MEX extensions upon installation. . You may leave this field empty if any user account (including root) is allowed to launch MATLAB. Template: matlab-support/rename-libs Type: boolean Default: false _Description: Rename MATLAB's GCC libraries? A MATLAB installation is shipped with copies of GCC dynamic loadable libraries, which typically come from an old version of GCC. . These libraries sometimes cause conflicts. . If you choose this option, the conflicting libraries will be renamed by appending a ".bak" extension. These libraries are located in the "sys/os/glnx86" or "sys/os/glnxa64" subdirectory of a MATLAB installation tree. matlab-support-0.0.19/debian/README.Developers0000644000000000000000000001013211511103246015641 0ustar Notes for developers -------------------- If you are working on a package that needs to build MEX extensions for Matlab you might want to follow the following steps to achieve this with relatively little effort. Since an official Debian package cannot build-depend on Matlab, MEX extensions have to be built when a package is installed on a particular system. To guarantee that a local Matlab is installed, a binary package may simply depend on the 'matlab-support' package that represents one or more local Matlab installations in the Debian package management system. For maximum comfort, install all sources for MEX extensions into /usr/src/matlab/ Analogous to Octave, the 'matlab-support-dev' package ships a little Makefile snippet defining the MATLAB_MEX_SRCDIR variable that points to /usr/src/matlab/. The script can be included into debian/rules like this include /usr/share/matlab/debian/defs.make To get the extensions built one needs to add a helper call to the package's postinst script. Such postinst script might look like this: ----------------------------------------------------------------------------- #!/bin/sh set -e case "$1" in configure) debian-matlab-mexhelper somepackagename install \ --build-cmd 'matlab -nodesktop -nodisplay -nojvm -r build_matlab' ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# ----------------------------------------------------------------------------- The call to 'debian-matlab-mexhelper' is fully customizable for arbitrary commands to build and install extensions, as well as to clean up the source tree afterwards. The matlab-support package offers default installation directories for Matlab MEX extensions and M-files (hence complete toolboxes) under /usr/lib/matlab/site and /usr/share/matlab/site/m respectively. The aforementioned Makefile snippet defines the MATLAB_MEX_BINDIR and MATLAB_MDIR variables that point to these locations. When Matlab toolboxes including MEX extensions are installed into MATLAB_MDIR the debian-matlab-mexhelper helper can also automatically move binary extensions to the respective MATLAB_MEX_BINDIR and symlink them back into the actual installation directory. Please take a look at the manpage for 'debian-matlab-mexhelper' for a comprehensive list of options and a number of examples for common use cases. Because 'debian-matlab-mexhelper' builds and installs extension files, as well as symlinks (in some cases) this additional content has to be taken care of separately when removing a package from the system. In this simplest case, a package maintainer installs extensions into the aforementioned 'standard' locations and adds a prerm script like this: ----------------------------------------------------------------------------- #!/bin/sh set -e case "$1" in remove|upgrade|deconfigure) debian-matlab-mexhelper somepackagename clean ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# ----------------------------------------------------------------------------- Caveats ------- While the matlab-support package tries to offer some integration of a local Matlab installation into a Debian system this integration is not and cannot be complete. For example, if a potentially required license manager is not running the build process will fail and in turn cause the package installation itself to fail -- leaving the package broken. A log file will be available for inspection. The matlab-support package supports building extensions under a user other than 'root', in case specific permissions for contacting a license manager are required. Moreover, Matlab lacks the concept of a 'package' (in contrast to Octave) that can be used to enable/disable packages at runtime to deal with namespace collisions. For this reason, no Matlab toolbox (installed by a Debian package) is automatically added to Matlab's search path. Sysadmins or users have to perform this final configuration step manually. matlab-support-0.0.19/debian/matlab-support.prerm0000644000000000000000000000110611471331304016677 0ustar #!/bin/sh set -e case "$1" in remove) # check whether there are any configured alternatives # and if, remove them all if [ -n "$(update-alternatives --list matlab 2> /dev/null || true)" ]; then update-alternatives --remove-all matlab fi ;; remove|upgrade|deconfigure) ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 matlab-support-0.0.19/debian/rules0000755000000000000000000000060212106635205013741 0ustar #!/usr/bin/make -f # one ring to rule them all ... %: dh $@ # nothing to do override_dh_auto_configure: override_dh_auto_install:: override_dh_auto_test:: override_dh_auto_build:: help2man -N -n "helper to build Matlab extensions on Debian" \ ./debian-matlab-mexhelper > debian-matlab-mexhelper.1 override_dh_clean: dh_clean debconf-updatepo -rm -f debian-matlab-mexhelper.1 matlab-support-0.0.19/debian/matlab-support.config0000644000000000000000000001355412106244704017034 0ustar #!/bin/bash set -e # enable all globbing that bash can do shopt -s extglob . /usr/share/debconf/confmodule db_version 2.0 db_capb backup db_settitle matlab-support/title CONFIGFILE=/etc/matlab/debconf # Load config file, if it exists. if [ -e $CONFIGFILE ]; then . $CONFIGFILE || true db_set matlab-support/matlab-install-glob "$MATLAB_INSTALL_GLOB" db_set matlab-support/mexbuild-user "$MATLAB_MEXBUILD_USER" fi # load config file # defaults # where to look for matlabs matlab_install_glob="$MATLAB_INSTALL_GLOB" # matlab alternatives as a comma separated list for debconf's select widget matlab_choices="" # chosen default matlab version matlab_default_version="" # flag whether any previous chosen default version is still a valid choice matlab_have_old_default=0 # make a good guess of where matlab is if it has never been configured if [ -z "$matlab_install_glob" ]; then # is there some matlab somewhere if which matlab > /dev/null; then # locate matlab_bin="$(readlink -f $(which matlab))" matlab_install_glob="$(dirname $(dirname $matlab_bin))" db_set matlab-support/matlab-install-glob "$matlab_install_glob" fi fi # This implements a simple state machine so the back button can be handled. # taken from debconf demo example STATE=1 while [ "$STATE" != 0 -a "$STATE" != 6 ]; do case $STATE in 1) if [ -z "$MATLAB_INSTALL_GLOB" ]; then db_fset matlab-support/matlab-install-glob seen false fi db_input high matlab-support/matlab-install-glob || true ;; 2) db_get matlab-support/matlab-install-glob matlab_install_glob="$RET" # no location is not good if [ -z "$matlab_install_glob" ]; then # fail in non-interactive mode db_input critical matlab-support/no-matlab-found || \ { echo "No matlab found and maybe running in non-interactive mode. No way out -- failing..."; exit 1; } db_fset matlab-support/matlab-install-glob seen false STATE=0 else # preserve the old default version to check whether it is still # there db_get matlab-support/default-version matlab_old_default="$RET" # figure out what versions we have for mpath in $matlab_install_glob; do # ignore everything that doesn't look like matlab [ ! -f $mpath/bin/mex ] && continue # figure out the version mver=$(grep "ver='" ${mpath}/bin/mex | cut -d "'" -f 2,2 | head -n1) if [ -z "$mver" ]; then # try alternative, more robust but heavy-weight approach mver=$(echo version | ${mpath}/bin/matlab -nodesktop -nodisplay -nosplash 2>/dev/null \ | grep -A2 'ans =' | tail -1 || :) fi # somewhat friendly description of this Matlab installation matlab_id="Matlab ${mver} @ ${mpath}" # is that the old default? if [ "$matlab_old_default" = "$matlab_id" ]; then matlab_have_old_default=1 fi # make comma-separated list of all choices if [ -z "$matlab_choices" ]; then matlab_choices=$matlab_id else matlab_choices="${matlab_choices}, $matlab_id" fi # configure alternatives # cannot use plain 'mex' since there is such a binary in # 'texlive-lang-polish' update-alternatives --install /usr/bin/matlab matlab \ $mpath/bin/matlab -1 \ --slave /usr/bin/matlab-mex matlab-mex $mpath/bin/mex \ --slave /usr/bin/matlab-mbuild matlab-mbuild $mpath/bin/mbuild done fi ;; 3) # make sure the selection gets displayed if the old default # vanished if [ $matlab_have_old_default -eq 0 ]; then db_fset matlab-support/default-version seen false fi # we require at least one valid choice if [ -z "$matlab_choices" ]; then db_input critical matlab-support/no-matlab-found || true db_fset matlab-support/matlab-install-glob seen false STATE=0 else # count the number of commas in the choices string to determine # the number of choices if [ $(echo $matlab_choices | tr -d -C ',' | wc -c) -gt 0 ]; then # make sure the default version selection is shown # whenever there is more than one choice db_fset matlab-support/default-version seen false fi # set the list of version choices db_subst matlab-support/default-version choices $matlab_choices db_input high matlab-support/default-version || true fi ;; 4) # make sure we have a default db_get matlab-support/default-version matlab_default_version="$RET" if [ -z "$matlab_default_version" ]; then db_input critical matlab-support/no-matlab-found || true db_fset matlab-support/matlab-install-glob seen false STATE=0 else db_input high matlab-support/mexbuild-user || true fi ;; 5) db_input high matlab-support/rename-libs || true ;; esac if db_go; then STATE=$(($STATE + 1)) else STATE=$(($STATE - 1)) fi done db_stop matlab-support-0.0.19/debian/README.source0000644000000000000000000000137311511103311015031 0ustar Although this whole package is pointless without Matlab (a large non-free something) the source package has been placed into 'main' for the following reason: It builds a 'matlab-support-dev' package that other source packages can build depend on to figure out where to install MEX sources and M-files (analogous to the way Octave packages provide this information via a Makefile snippet). This -dev package has nothing to do with Matlab and should go into 'main', as otherwise no source package that build-depends on it could go into 'main'. That would be suboptimal for otherwise DFSG-compliant package that simply also _can_ build MEX extensions (e.g. see the dynare-matlab package in the archive). The actual Matlab adaptor package is placed into 'contrib'. matlab-support-0.0.19/debian/matlab-support.docs0000644000000000000000000000003111510634027016500 0ustar debian/README.Developers matlab-support-0.0.19/debian/README.Debian0000644000000000000000000000077111511103131014714 0ustar matlab-support for Debian ------------------------- The MATLAB installer usually places symlinks to the respective MATLAB binaries into /usr/local/bin. Since this directory typically comes first in the search path it will override the default MATLAB version selected via Debian's alternatives system. Remove all MATLAB symlinks from /usr/local/bin/ if you want to control the default MATLAB version via 'update-alternatives'. -- Michael Hanke Mon, 30 Nov 2010 10:50:53 -0500 matlab-support-0.0.19/debian/compat0000644000000000000000000000000211412766632014071 0ustar 7 matlab-support-0.0.19/debian/matlab-support.postinst0000755000000000000000000000572412106244164017455 0ustar #!/bin/bash set -e . /usr/share/debconf/confmodule db_get matlab-support/matlab-install-glob matlab_install_glob="$RET" db_get matlab-support/default-version matlab_default_path=$(echo $RET | cut -d '@' -f 2,2) db_get matlab-support/mexbuild-user matlab_mexbuild_user=$RET db_get matlab-support/rename-libs matlab_rename_libs=$RET CFG=/etc/matlab/debconf case "$1" in configure) # if there is no default path something went wrong if [ -z "$matlab_default_path" ]; then echo "No default Matlab path found. Exiting." exit 1 fi # look whether there is a config file and recreate the config file if # missing if [ ! -e $CFG ]; then cp -f /usr/share/matlab/debian/debconf.template $CFG fi # make a backup conf file cp -dpf $CFG $CFG.tmp # check that all vars are in the debconf file # If the admin deleted or commented some variables but then set # them via debconf, (re-)add them to the conffile. test -z "$matlab_install_glob" \ || grep -Eq '^ *MATLAB_INSTALL_GLOB=' $CFG.tmp \ || echo "MATLAB_INSTALL_GLOB=" >> $CFG.tmp test -z "$matlab_mexbuild_user" \ || grep -Eq '^ *MATLAB_MEXBUILD_USER=' $CFG.tmp \ || echo "MATLAB_MEXBUILD_USER=" >> $CFG.tmp # now set the value from the debconf database # write values to config file sed -e "s,^ *MATLAB_INSTALL_GLOB=.*,MATLAB_INSTALL_GLOB=\"$matlab_install_glob\"," \ -e "s,^ *MATLAB_MEXBUILD_USER=.*,MATLAB_MEXBUILD_USER=\"$matlab_mexbuild_user\"," \ < $CFG.tmp > $CFG # remove tmp file rm -f $CFG.tmp # select the default alternative update-alternatives --install /usr/bin/matlab matlab \ $matlab_default_path/bin/matlab 0 \ --slave /usr/bin/matlab-mex matlab-mex $matlab_default_path/bin/mex \ --slave /usr/bin/matlab-mbuild matlab-mbuild $matlab_default_path/bin/mbuild if [ "$matlab_rename_libs" = "true" ]; then for matlab_alt in $(update-alternatives --query matlab | grep 'Alternative:' | cut -d ' ' -f 2,2) do matlab_path=${matlab_alt%*/bin/matlab} for f in $matlab_path/sys/os/glnx86/libgcc_s.so.1 \ $matlab_path/sys/os/glnx86/libstdc++.so.6 \ $matlab_path/sys/os/glnxa64/libgcc_s.so.1 \ $matlab_path/sys/os/glnxa64/libstdc++.so.6 do if [ -e $f ]; then echo "Renaming $f to $f.bak." mv $f $f.bak else echo "Tried renaming $f" fi done done fi ;; abort-upgrade|abort-remove|abort-deconfigure) # nothing to do ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# matlab-support-0.0.19/debconf.template0000644000000000000000000000143111471371100014570 0ustar ####################################################################### # # # Debian Matlab interface configuration # # # # Feel free to edit this file. However, be aware that debconf writes # # to (and reads from) this file too. In case of doubt, only use # # 'dpkg-reconfigure matlab' to modify the configuration. # # # ####################################################################### # Location of local Matlab installations MATLAB_INSTALL_GLOB= # Name of the user account that is used to build MEX files MATLAB_MEXBUILD_USER= matlab-support-0.0.19/matlab.desktop0000644000000000000000000000043612106250511014270 0ustar [Desktop Entry] Version=1.0 Type=Application Terminal=false Exec=matlab -desktop Name=MATLAB Icon=/usr/share/icons/hicolor/48x48/apps/matlab.png Categories=Development;Math;Science Comment=Scientific computing environment StartupNotify=true StartupWMClass=com-mathworks-util-PostVMInit