diff options
-rw-r--r-- | README-autoirpm-icons | 3 | ||||
-rwxr-xr-x | _irpm | 66 | ||||
-rw-r--r-- | autoirpm.README | 48 | ||||
-rw-r--r-- | autoirpm.deny | 4 | ||||
-rw-r--r-- | autoirpm.uninstall | 23 | ||||
-rw-r--r-- | autoirpm.update | 46 | ||||
-rw-r--r-- | autoirpm.update-all.cc | 88 | ||||
-rw-r--r-- | man/C/autoirpm.8 | 51 | ||||
-rw-r--r-- | man/cs/autoirpm.8 | 51 | ||||
-rw-r--r-- | man/et/autoirpm.8 | 43 | ||||
-rw-r--r-- | man/eu/autoirpm.8 | 52 | ||||
-rw-r--r-- | man/fi/autoirpm.8 | 42 | ||||
-rw-r--r-- | man/fr/autoirpm.8 | 51 | ||||
-rw-r--r-- | man/nl/autoirpm.8 | 54 | ||||
-rw-r--r-- | man/ru/autoirpm.8 | 51 | ||||
-rw-r--r-- | man/uk/autoirpm.8 | 51 |
16 files changed, 0 insertions, 724 deletions
diff --git a/README-autoirpm-icons b/README-autoirpm-icons deleted file mode 100644 index 9216a31a..00000000 --- a/README-autoirpm-icons +++ /dev/null @@ -1,3 +0,0 @@ -This package is to be used with autoirpm package. -It provides menu icons for non installed apps that should take advantages of -autoirpm features. @@ -1,66 +0,0 @@ -#!/usr/bin/perl - -# for i18n -use POSIX; -use Locale::gettext; - -setlocale (LC_ALL, ""); -textdomain ("urpmi"); - -sub N { - my ($format, @params) = @_; - sprintf(Locale::gettext::gettext($format), @params); -} - -$automatic = 0; -$timeout = 15; - -$DIR = "/var/lib/urpmi"; -$BASE = "$DIR/autoirpm"; -$INSTALL_SCRIPT_REP = "$BASE.scripts"; - -$rpm = shift @ARGV; -print STDERR "autoirpm: ", N("installing %s\n",$rpm); - -`xtest`; -$X = ($? == 0); - -my $pid; -$SIG{ALRM} = sub { $pid and kill 9, $pid; not_found(); }; -alarm $timeout; - -if (!$automatic) { - $interactive_mesg = N("Automatic installation of packages...\nYou requested installation of package %s\n",$rpm) . N("Is this OK?"); - if ($X) { - my $ok = N("Ok"); - my $cancel = N("Cancel"); - ($pid = fork) or exec "gmessage", "-default", $ok, "-buttons", "$ok:0,$cancel:2", $interactive_mesg; - wait(); - $? and not_found(); - } else { - if (isatty(0)) { - $noexpr = N("Nn"); - $yesexpr = N("Yy"); - print $interactive_mesg, N(" (Y/n) "); - <STDIN> =~ /[$yesexpr]/ or not_found(); - } else { - # Arghhh not in automatic and no way to contact the user... dying - not_found(); - } - } -} -alarm 0; - -$urpmi = !$automatic && $X ? "gurpmi" : "urpmi"; -fork or exec $urpmi, "--comment", $ARGV[0], $rpm; wait; - -# launch the initial prog -(readlink $ARGV[0]) !~ /$INSTALL_SCRIPT_REP/ and exec @ARGV; - -not_found(); - -sub not_found { - print STDERR N("%s: command not found\n",$rpm); - exit 127; -} - diff --git a/autoirpm.README b/autoirpm.README deleted file mode 100644 index dd341bec..00000000 --- a/autoirpm.README +++ /dev/null @@ -1,48 +0,0 @@ -* BUG - -emacs with xemacs causes pbs 'cuz same binaries. - -List of packages not to autoinstall: -- psacct -- the one containing netscape (just a wrapper) - - -ALL BELOW IS (was MAYBE, is COMPLETELY) OBSOLETE - - -The idea is to auto-install rpms on demand, when needed. For this, every -possible binaries that could exist (eg: /usr/bin/gimp, apropos shouldn't that be -/usr/X11R6/bin?) is created as a symlink to a script for installing the needed -packages. Not every package should be auto-installable. - -For the moment, it is very tied to a distribution. The package i've done is for -the mandrake-5.3, using another distribution could result in??? -The package is auto-generated given the different packages which will be -auto-installable. - -Advantages: it seems like you're having every packages installed, but without -consuming unneeded harddisk space. So if you never use gimp, it doesn't change -anything. The first time you call gimp, the package is installed (with the -needed required packages). - -Bad points: security? - - -INSTALLATION: -* rpm -i autoirpm-???.rpm -* optional (by default it takes /mnt/cdrom): - edit /etc/autoirpm/files to give the location of the rpms -* execute /usr/sbin/autoirpm-update - -TODO: -* links to progs are not autoinstalled -* automatic uninstall of unused packages :) (cron here) -* add an interactive mode (term, X...). -* maybe pb with ENV variables not completly the same (eg: "ksh" is not the same as "sh -c ksh")?? -* dependencies' versions -* wrapper around rpm needed (call autoirpm-install.pm on rpm -e) - -FUTURE: -* patch the kernel, so that if the open(2) (or maybe stat...) call fail, a -script is called that install the needed file. Interesting for headers (.h), -librairies (.so), man pages :)))) (crazy idea, but...) diff --git a/autoirpm.deny b/autoirpm.deny deleted file mode 100644 index 7fcf5705..00000000 --- a/autoirpm.deny +++ /dev/null @@ -1,4 +0,0 @@ -gdm -quotaon quotaoff -linux_logo -accton diff --git a/autoirpm.uninstall b/autoirpm.uninstall deleted file mode 100644 index cd03a7de..00000000 --- a/autoirpm.uninstall +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/perl - -$DIR = "/var/lib/urpmi"; -$BASE = "$DIR/autoirpm"; -$AUTO_INSTALL_BIN_LIST = "$BASE.binaries"; -$INSTALL_SCRIPT_REP = "$BASE.scripts"; - -open F, $AUTO_INSTALL_BIN_LIST or die; -map { chop; remove_links_and_scripts($_) } <F>; -close F; - -sub remove_links_and_scripts($) { - my ($rpm, @progs) = split; - - my $script = "$INSTALL_SCRIPT_REP/$rpm"; - - -e $script or return 0; # not installed for this package - foreach (<@progs>) { - readlink "/$_" ne $script and next; - unlink "/$_" or warn "removing $_ failed"; - } - unlink $script or warn "removing $script failed"; -} diff --git a/autoirpm.update b/autoirpm.update deleted file mode 100644 index 5290bbb0..00000000 --- a/autoirpm.update +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/perl - -$DIR = "/var/lib/urpmi"; -$DIR2 = "/etc/urpmi"; -$BASE = "$DIR/autoirpm"; -$BASE2 = "$DIR2/autoirpm"; -$AUTO_INSTALL_BIN_LIST = "$BASE.binaries"; -$INSTALL_SCRIPT_REP = "$BASE.scripts"; - -system("packdrake --cat $DIR/hdlist*.cz | autoirpm.update-all $BASE2.allow $BASE2.deny - > $AUTO_INSTALL_BIN_LIST"); -$? == 0 or die "autoirpm.upgrade-all failed\n"; - -open F, $AUTO_INSTALL_BIN_LIST or die; -map { chop; create_links_and_install_scripts($_) } <F>; -close F; - -sub create_links_and_install_scripts($) { - my ($rpm, @progs) = split ' ', $_[0]; - my $script = "$INSTALL_SCRIPT_REP/$rpm"; - - foreach (@progs) { lstat "/$_" and return } # verify that it's not installed - - foreach (@progs) { - mkdir_(dirname("/$_")); - symlink $script, "/$_"; # or die "$rpm: /$_"; - } - - open G, ">$script" or die; - print G "_irpm $rpm \$0 \$*\n"; - close G; - chmod 0755, "$script"; -} - -sub dirname { local $_ = shift; s|[^/]*/*\s*$||; s|(.)/*$|$1|; $_ || '.' } - -sub mkdir_ { - -d $_[0] and return; - - my $root = dirname $_[0]; - if (-e $root) { - -d $root or die "mkdir: error creating directory $_[0]: $root is a file and i won't delete it\n"; - } else { - mkdir_($root); - } - mkdir $_[0], 0755 or die "mkdir: error creating directory $_: $!\n"; -} diff --git a/autoirpm.update-all.cc b/autoirpm.update-all.cc deleted file mode 100644 index de96edd4..00000000 --- a/autoirpm.update-all.cc +++ /dev/null @@ -1,88 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <sys/types.h> -#include <sys/stat.h> -#include <fcntl.h> -#include <unistd.h> -#include <rpmlib.h> -#include <string> -#include <set> -#include <fstream> - - -typedef set<string>::difference_type diff_type; - -set<string> *read_set(const char *file) { - ifstream input(file); - if (input) { - set<string> *myset = new set<string>; - istream_iterator<string,diff_type> input_set(input),eos; - copy(input_set, eos, inserter(*myset, myset->begin())); - return myset; - } - return 0; -} - -int main(int argc, char **argv) { - if (argc <= 3) { - cerr << "usage: " << argv[0] << " <allow progs file> <deny progs file> <hdlist> [<hdlist> ...]\n"; - exit(1); - } - - set<string> *allow = read_set(argv[1]); - set<string> *deny = read_set(argv[2]); - - for (int i = 3; i < argc; i++) { - Header header; - FD_t fd = strcmp(argv[i], "-") == 0 ? fdDup(STDIN_FILENO) : fdOpen(argv[i], O_RDONLY, 0); - if (fdFileno(fd) < 0) { - fprintf(stderr, "%s: cannot open file %s\n", argv[0], argv[i]); - exit(1); - } - - while ((header=headerRead(fd, HEADER_MAGIC_YES))) { - int_32 type, count; - unsigned short *p; - char **f, *name; - int printed = 0; - - headerGetEntry(header, RPMTAG_NAME, &type, (void **) &name, NULL); - headerGetEntry(header, RPMTAG_FILEMODES, &type, (void **) &p, &count); - headerGetEntry(header, RPMTAG_OLDFILENAMES, &type, (void **) &f, NULL); - - char ** baseNames, ** dirNames; - int_32 * dirIndexes; - headerGetEntry(header, RPMTAG_BASENAMES, &type, (void **) &baseNames, NULL); - headerGetEntry(header, RPMTAG_DIRINDEXES, &type, (void **) &dirIndexes, NULL); - headerGetEntry(header, RPMTAG_DIRNAMES, &type, (void **) &dirNames, NULL); - - for (int i = 0; i < count; i++) { - if ((p[i] & 040111) == 0111) { - int ok; - if (f) { - char *s = strrchr(f[i], '/'); - ok = s && s - 3 >= f[i] && strncmp(s - 3, "bin", 3) == 0 && - (!allow || allow->count(s + 1)) && - (!deny || !deny->count(s + 1)); - } else { - char *d = dirNames[dirIndexes[i]]; - ok = strlen(d) >= 4 && strncmp(d + strlen(d) - 4, "bin/", 4) == 0 && - (!allow || allow->count(baseNames[i])) && - (!deny || !deny->count(baseNames[i])); - } - if (ok) { - if (!printed) { - printed = 1; - cout << name; - } - if (f) cout << " " << f[i]; else cout << " " << dirNames[dirIndexes[i]] << baseNames[i]; - } - } - } - if (printed) cout << "\n"; - } - fdClose(fd); - } - return 0; -} diff --git a/man/C/autoirpm.8 b/man/C/autoirpm.8 deleted file mode 100644 index 991397f2..00000000 --- a/man/C/autoirpm.8 +++ /dev/null @@ -1,51 +0,0 @@ -.TH autoirpm 8 "05 Sep 2000" "Mandrakesoft" "Mandrakelinux" -.IX autoirpm -.SH NAME -autoirpm \- auto installs the RPM matching your command -.SH SYNOPSIS -.B autoirpm -.SH DESCRIPTION -autoirpm *magically* guesses which package you need and installs it. -Let's imagine that you typed gmix to launch your sound mixer. If it is -not available, you are then asked if you wish to install the package -gnome-media which contains the gmix binary... -.PP -To do so, launch autoirpm.update-all, which scans all packages known by -urpmi for all binary executables. It then creates links in respective binary -directories... -Use autoirpm.uninstall to remove all links created by autoirpm.update. -.PP -use \fBautoirpm.update <name>\fP to update executables contained in packages -of <name>d media. -.PP -use \fBautoirpm.update-all\fP to update executables contained in packages of -all medias known by urpmi. -.PP -use \fBautoirpm.uninstall\fP to remove all links installed by autoirpm. -.PP -This feature may be offered for menu icons installing autoirpm-icons package. -.SH FILES -/etc/urpmi/autoirpm.deny -.br -All binaries contained in packages listed in this file won't lead to an auto install of rpm. -.PP -/etc/urpmi/autoirpm.allow -.br -If present, only binaries of listed packages will offer the feature of -auto-install. - -.SH "SEE ALSO" -urpmi(8) -.SH AUTHOR -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com - - - - - - - - - diff --git a/man/cs/autoirpm.8 b/man/cs/autoirpm.8 deleted file mode 100644 index bcb0670f..00000000 --- a/man/cs/autoirpm.8 +++ /dev/null @@ -1,51 +0,0 @@ -.TH autoirpm 8 "05 Srp 2000" "Mandrakesoft" "Linux-Mandrake" -.IX autoirpm -.SH NÁZEV -autoirpm \- automaticky instaluje balíèky RPM vyhovující va¹emu pøíkazu -.SH SYNAPSE -.B autoirpm -.SH POPIS -Program autoirpm *magicky* odhadne, které balíèky potøebujete, a nainstaluje je. -Pøedstavte si, ¾e jste napsali pøíkaz gmix a chtìli jste spustit vá¹ zvukový mixér. -Pokud není k dispozici, jste poté dotázáni, zda chcete instalovat balíèek gnome-media, -který obsahuje spustitelný soubor gmix... -.PP -Chcete-li toto chování, spus»te program autoirpm.update-all, který prozkoumá v¹echny -balíèky známé programu urpmi, a zkusí najít v¹echny spustitelné soubory. Poté vytvoøí symbolické -odkazy v odpovídajících adresáøích se spustitelnými soubory... -Spu¹tìním program autoirpm.uninstall odstraníte v¹echny symbolické odkazy vytvoøené programem autoirpm.update. -.PP -Pou¾ijte \fBautoirpm.update <název>\fP, chcete-li aktualizovat spustitelné soubory obsa¾ené v balíècích -zdroje s <názvem>. -.PP -Pou¾ijte \fBautoirpm.update-all\fP, chcete-li aktualizovat spustitelné soubory obsa¾ené v balíècích -ve v¹ech zdrojích známých programu urpmi. -.PP -Pou¾ijte \fBautoirpm.uninstall\fP, chcete-li odstranit v¹echny symbolické odkazy instalované programem autoirpm. -.PP -Tuto vlastnost lze také pou¾ít pro ikony menu, pomocí instalace balíèku autoirpm-icons. -.SH SOUBORY -/etc/urpmi/autoirpm.deny -.br -V¹echny spustitelné soubory obsa¾ené v balíècích uvedených v tomto souboru nepovedou k automatické instalaci balíèku RPM. -.PP -/etc/urpmi/autoirpm.allow -.br -Pokud je tento soubor pøítomen, pak pouze spustitelné soubory z balíèkù uvedených v tomto souboru budou umo¾òovat automatickou -instalaci. - -.SH "VIZ TAKÉ" -urpmi(8) -.SH AUTOR -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com - - - - - - - - - diff --git a/man/et/autoirpm.8 b/man/et/autoirpm.8 deleted file mode 100644 index 577e9c47..00000000 --- a/man/et/autoirpm.8 +++ /dev/null @@ -1,43 +0,0 @@ -.\" .IX autoirpm -.TH "autoirpm" "8" "05. sept. 2000" "Mandrakesoft" "Linux-Mandrake" -.SH "NIMI" -autoirpm \- paigaldab automaatselt käsuga sobiva RPM\-i -.SH "KOKKUVÕTE" -.B autoirpm -.SH "DESCRIPTION" -autoirpm arvab *maagiliselt* ära, millist paketti Teil vaja läheb, ning paigaldab selle. -Kujutame ette, et kirjutasie käsureale gmix, et käivitada helimikser. Kui seda ei leidu, küsitakse Teilt seepeale, kas soovite paigaldada paketi gnome\-media, mille koosseisu kuulub gmix... -.PP -Et see võimalik oleks, käivitage autoirpm.update\-all, mis otsib kõik urpmi\-le tuntud paketid läbi, et leida kõik binaarkäivitusfailid. Seejärel luuakse viidad vastavates binaarkataloogides... -Käsk autoirpm.uninstall eemaldab kõik viidad, mille tekitas autoirpm.update. -.PP -Käsk \fBautoirpm.update <nimi>\fP uuendab käivitusfaile, mis leiduvad andmekandja <nimi> pakettides. -.PP -Käsk \fBautoirpm.update\-all\fP uuendab käivitusfaile kõigi urpmi\-le tuntud andmekandjate pakettides. -.PP -Käsk \fBautoirpm.uninstall\fP eemaldab kõik viidad, mille tekitas autoirpm. -.PP -Seda võimalust sobib kasutada menüüikoonide puhul, paigaldamaks paketti autoirpm\-icons. -.SH "FAILID" -/etc/urpmi/autoirpm.deny -.br -Kõik failid, mis leiduvad siin loetletud pakettides, tähendavad, et rpm\-i automaatst paigaldust ei toimu. -.PP -/etc/urpmi/autoirpm.allow -.br -Kui see on olemas, siis toimub automaatpaigaldus ainult loetletud pakettide binaarfailide puhul. -.SH "VAATA KA" -urpmi(8) -.SH "AUTOR" -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com - - - - - - - - - diff --git a/man/eu/autoirpm.8 b/man/eu/autoirpm.8 deleted file mode 100644 index 3aa4f791..00000000 --- a/man/eu/autoirpm.8 +++ /dev/null @@ -1,52 +0,0 @@ -.TH autoirpm 8 "2000ko irailak 05" "Mandrakesoft" "Linuxmandrake" -.IX autoirpm -.SH IZENA -autoirpm \- zure komandoarekin bat datorren RPMa automatikoki instalatzen du -.SH LABURPENA -.B autoirpm -.SH AZALPENA -autoirpm-ek *magikoki* asmatzen du zein pakete behar duzun, eta instalatu egiten du. -Demagun gmix idatzi duzula zure soinu-nahastailea abiarazteko. Erabilgarri -ez badago, gnome-media paketea instalatu nahi duzun galdetuko dizu, -pakete horrek baitu gmix bitarra... -.PP -Horretarako, autoirpm.update-all abiarazi, eta horrek urpmi-k bitar -exekutagarri guztietarako ezagutzen diren pakete guztiak eskaneatuko ditu. Orduan, dagozkion direktorio bitarretan estekak -sortuko ditu. -autoirpm.update-k sortutako esteka guztiak kentzeko, autoirpm.uninstall erabili. -.PP -<izena>-euskarrien paketeetan dauden exekutagarriak eguneratzeko, -\fBautoirpm.update <izena>\fP erabili. -.PP -urpmi-k ezagutzen dituen euskarri guztietako paketeetan dauden exekutagarriak -eguneratzeko, \fBautoirpm.update-all\fP erabili. -.PP -autoirpm-ek instalatutako esteka guztiak kentzeko, \fBautoirpm.uninstall\fP erabili. -.PP -Eginbide hau autoirpm-icons paketea instalatzen duten menu-ikonoetarako eskain daiteke. -.SH FITXATEGIAK -/etc/urpmi/autoirpm.deny -.br -Fitxategi honetan zerrendatutako paketeetan dauden bitarrek ez dute rpm automatikoki instalatzea ondorioztatuko. -.PP -/etc/urpmi/autoirpm.allow -.br -Hori baldin badago, zerrendatutako paketeen bitarrek bakarrik eskainiko dute -instalazio automatikoaren eginbidea. - -.SH "IKUSI BAITA ERE" -urpmi(8) -.SH EGILEA -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com - - - - - - - - - - diff --git a/man/fi/autoirpm.8 b/man/fi/autoirpm.8 deleted file mode 100644 index d39a0b15..00000000 --- a/man/fi/autoirpm.8 +++ /dev/null @@ -1,42 +0,0 @@ -.TH autoirpm 8 "05 Sep 2000" "Mandrakesoft" "Mandrakelinux" -.IX autoirpm -.SH NIMI -autoirpm \- asentaa automaatisesti RPM joka sisältää komentosi -.SH YLEISKATSAUS -.B autoirpm -.SH KUVAUS -autoirpm arvioi *maagisesti* mikä paketti tarvitset ja asentaa sen. -Oletetaan että kirjoitit gmix käynnistääksesi äänimikserisi. Jos se -ei ole käytettävissä, sinulta kysytään jos haluat asentaa paketti -gnome-media joka sisältää gmix ohjelman... -.PP -Tehdääksesi tämän, suorita autoirpm.update-all, joka etsii kaikista -urpmi:n tuntemista paketeista ohjelmatiedostoja. Se luo sitten linkkejä -ohjelmien määräämiin hakemistoihin... -Suorita autoirpm.uninstall poistaaksesi autoirpm.update:n tekemiä linkkejä. -.PP -käytä \fBautoirpm.update <nimi>\fP päivittääksesi <nimi> median ohjelmia. -.PP -käytä \fBautoirpm.update-all\fP päivittääksesi kaikki urpmi:n tuntemia -medioiden ohjelmia. -.PP -käytä \fBautoirpm.uninstall\fP poistaaksesi kaikki autoirpm tekemiä linkkejä. -.PP -Tämä ominaisuus voidaan tarjota valikko kuvakkeille asentamalla -autoirpm-icons paketti. -.SH TIEDOSTOT -/etc/urpmi/autoirpm.deny -.br -Kaikki listatuihin pakettien kuuluvia ohjelmia eivät käynnistä rpm-tiedostjen -automaattiasennus. -.PP -/etc/urpmi/autoirpm.allow -.br -Jos olemassa, ainoastaan listattujen pakettien sisältämät ohjelmat käynnistävät -automaattiasennuksen. -.SH "KATSO MYÖS" -urpmi(8) -.SH TEKIJÄT -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com diff --git a/man/fr/autoirpm.8 b/man/fr/autoirpm.8 deleted file mode 100644 index 57fd0aeb..00000000 --- a/man/fr/autoirpm.8 +++ /dev/null @@ -1,51 +0,0 @@ -.TH autoirpm 8 "05 Sep 2000" "Mandrakesoft" "Linux-Mandrake" -.IX autoirpm -.SH NAME -autoirpm \- installe automatiquement le RPM correspondant à votre commande -.SH SYNOPSIS -.B autoirpm -.SH DESCRIPTION -autoirpm devine *magiquement* le paquetage dont vous avez besoin et l'installe. -Imaginez que vous tapiez gmix pour lancer votre table de mixage audio. S'il -n'est pas disponible, on vous demandera si vous souhaitez installer le -paquetage gnome-media qui contient le binaire gmix... -.PP -Pour cela, lancez autoirpm.update-all, qui scanne tous les paquetages connus -par urpmi à la recherche de tous les exécutables binaires. Il crée ensuite -des liens dans les répertoires respectifs de ces exécutables... -Utilisez autoirpm.uninstall pour retirer tous les liens créés par autoirpm.update. -.PP -utilisez \fBautoirpm.update <nom>\fP pour mettre à jour les exécutables contenus -dans les paquetages du média <nom>mé. -.PP -utilisez \fBautoirpm.update-all\fP pour mettre à jour les exécutables contenus -dans tous les médias connus par urpmi. -.PP -utilisez \fBautoirpm.uninstall\fP pour retirer tous les liens installés par autoirpm. -.PP -This feature may be offered for menu icons installing autoirpm-icons package. -.SH FICHIERS -/etc/urpmi/autoirpm.deny -.br -Tous les binaires contenus dans les paquetages listés dans ce fichier ne mèneront pas -à une installation automatique du rpm. -.PP -/etc/urpmi/autoirpm.allow -.br -Si présent, seuls les binaires des paquetages listés offriront la fonction auto-install. - -.SH "VOIR AUSSI" -urpmi(8) -.SH AUTEUR -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com - - - - - - - - - diff --git a/man/nl/autoirpm.8 b/man/nl/autoirpm.8 deleted file mode 100644 index fc6df716..00000000 --- a/man/nl/autoirpm.8 +++ /dev/null @@ -1,54 +0,0 @@ -.TH autoirpm 8 "05 Sep 2000" "Mandrakesoft" "Linux-Mandrake" -.IX autoirpm -.SH NAAM -autoirpm \- installeert automatisch het RPM-pakket dat u nodig hebt -.SH SYNOPSIS -.B autoirpm -.SH BESCHRIJVING -autoirpm herkent op 'magische' wijze welk pakket u nodig hebt en installeert dit. -Stel, u typt gmix om de geluidsmixer te starten. Als gmix echter niet geïnstalleerd -is, wordt u gevraagd of u het pakket gnome-media met daarin het binaire bestand -gmix wilt installeren. -.PP -Dit bereikt u door eerst autoirpm.update-all te starten. Dit programma onderzoekt -alle bij urpmi bekende pakketten op binaire executables. Daarna maakt het links aan -in de respectievelijke binaire directory's. -Met de opdracht autoirpm.uninstall verwijdert u alle links die door autoirpm.update -zijn aangemaakt. -.PP -Met \fBautoirpm.update <naam>\fP werkt u de executables bij in de pakketten -van het medium <naam>. -.PP -Met \fBautoirpm.update-all\fP werkt u de executables bij in alle -pakketten van alle media die bij urpmi bekend zijn. -.PP -Met \fBautoirpm.uninstall\fP verwijdert u alle links die door autoirpm zijn aangemaakt. -.PP -Voor het installeren van menupictogrammen volgens ditzelfde stramien gebruikt u het -pakket autoirpm-icons. -.SH FILES -/etc/urpmi/autoirpm.deny -.br -De binaire executables in de pakketten die in dit bestand zijn opgenomen zullen -niet leiden tot een automatische installatie van een RPM-pakket. -.PP -/etc/urpmi/autoirpm.allow -.br -Wanneer dit bestand aanwezig is, zullen uitsluitend de binaire executables van de -hierin opgesomde pakketten betrokken worden worden bij automatische installatie. - -.SH "ZIE OOK" -urpmi(8) -.SH AUTEUR -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com - - - - - - - - - diff --git a/man/ru/autoirpm.8 b/man/ru/autoirpm.8 deleted file mode 100644 index 53fdd4fa..00000000 --- a/man/ru/autoirpm.8 +++ /dev/null @@ -1,51 +0,0 @@ -.TH autoirpm 8 "05 ÓÅÎÔÑÂÒÑ 2000" "Mandrakesoft" "Linux-Mandrake"
-.IX autoirpm
-.SH îáú÷áîéå
-autoirpm \- Á×ÔÏÍÁÔÉÞÅÓËÉ ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ RPM ÓÏÇÌÁÓÎÏ ×ÁÛÅÊ ËÏÍÁÎÄÅ
-.SH óéîôáëóéó
-.B autoirpm
-.SH ïðéóáîéå
-autoirpm *ÞÕÄÏÍ* ÄÏÇÁÄÙ×ÁÅÔÓÑ, ËÁËÏÊ ÐÁËÅÔ ×ÁÍ ÎÕÖÅÎ É ÕÓÔÁÎÁ×ÌÉ×ÁÅÔ ÅÇÏ.
-äÁ×ÁÊÔÅ ÐÒÅÄÓÔÁ×ÉÍ, ÞÔÏ ×Ù ××ÅÌÉ gmix ÄÌÑ ÚÁÐÕÓËÁ Ú×ÕËÏ×ÏÇÏ ÍÉËÛÅÒÁ. åÓÌÉ ÏÎ
-ÎÅ ÄÏÓÔÕÐÅÎ, ×ÁÍ ÂÕÄÅÔ ÐÒÅÄÌÏÖÅÎÏ ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ gnome-media, × ËÏÔÏÒÏÍ
-ÉÍÅÅÔÓÑ Ä×ÏÉÞÎÙÊ ÆÁÊÌ gmix?
-.PP
-äÌÑ ÜÔÏÇÏ ÚÁÐÕÓÔÉÔÅ autoirpm.update-all, ËÏÔÏÒÁÑ ÐÒÏÓËÁÎÉÒÕÅÔ ×ÓÅ ÐÁËÅÔÙ,
-ÉÚ×ÅÓÔÎÙÅ urpmi, ÎÁ ÎÁÌÉÞÉÅ ×ÓÅÈ Ä×ÏÉÞÎÙÈ ÉÓÐÏÌÎÑÅÍÙÈ ÆÁÊÌÏ×. úÁÔÅÍ ÏÎÁ
-ÓÏÚÄÁÓÔ ÓÓÙÌËÉ × ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÈ ÄÉÒÅËÔÏÒÉÑÈ Ó Ä×ÏÉÞÎÙÍÉ ÆÁÊÌÁÍÉ?
-éÓÐÏÌØÚÕÊÔÅ autoirpm.uninstall, ÞÔÏÂÙ ÕÄÁÌÉÔØ ×ÓÅ ÓÓÙÌËÉ, ÓÏÚÄÁÎÎÙÅ
-autoirpm.update.
-.PP
-éÓÐÏÌØÚÕÊÔÅ \fBautoirpm.update <ÉÍÑ>\fP, ÞÔÏÂÙ ÏÂÎÏ×ÉÔØ ÉÓÐÏÌÎÑÅÍÙÅ
-ÆÁÊÌÙ, ÓÏÄÅÒÖÁÝÉÅÓÑ ÎÁ ÎÁËÏÐÉÔÅÌÅ <ÉÍÑ>.
-.PP
-éÓÐÏÌØÚÕÊÔÅ \fBautoirpm.update-all\fP, ÞÔÏÂÙ ÏÂÎÏ×ÉÔØ ÉÓÐÏÌÎÑÅÍÙÅ ÆÁÊÌÙ,
-ÓÏÄÅÒÖÁÝÉÅÓÑ ÎÁ ×ÓÅÈ ÎÁËÏÐÉÔÅÌÑÈ, ÉÚ×ÅÓÔÎÙÈ urpmi.
-.PP
-éÓÐÏÌØÚÕÊÔÅ \fBautoirpm.uninstall\fP, ÞÔÏÂÙ ÕÄÁÌÉÔØ ×ÓÅ ÓÓÙÌËÉ, ÕÓÔÁÎÏ×ÌÅÎÎÙÅ
-autoirpm.
-.PP
-üÔÁ ÆÕÎËÃÉÑ ÍÏÖÅÔ ÂÙÔØ ÐÒÅÄÌÏÖÅÎÁ ÄÌÑ ÚÎÁÞËÏ× ÍÅÎÀ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ
-autoirpm-icons.
-.SH æáêìù
-/etc/urpmi/autoirpm.deny
-.br
-÷ÓÅ ÉÓÐÏÌÎÑÅÍÙÅ ÆÁÊÌÙ, ÓÏÄÅÒÖÁÝÉÅÓÑ × ÐÁËÅÔÁÈ É ÐÅÒÅÞÉÓÌÅÎÎÙÅ × ÜÔÏÍ ÆÁÊÌÅ,
-ÎÅ ÂÕÄÕÔ ÉÎÉÃÉÉÒÏ×ÁÔØ Á×ÔÏÍÁÔÉÞÅÓËÕÀ ÕÓÔÁÎÏ×ËÕ rpm.
-.PP
-/etc/urpmi/autoirpm.allow
-.br
-åÓÌÉ ÓÕÝÅÓÔ×ÕÅÔ, ÔÏÌØËÏ ÄÌÑ ÉÓÐÏÌÎÑÅÍÙÈ ÆÁÊÌÏ× ÐÅÒÅÞÉÓÌÅÎÎÙÈ ÐÁËÅÔÏ× ÂÕÄÅÔ
-ÐÒÅÄÌÁÇÁÔØÓÑ ÆÕÎËÃÉÑ Á×ÔÏÍÁÔÉÞÅÓËÏÊ ÕÓÔÁÎÏ×ËÉ.
-
-.SH "óí. ôáëöå"
-urpmi(8)
-.SH á÷ôïò
-Pascal Rigaux, Mandrakesoft
-.br
-pixel@mandrakesoft.com
-.SH ðåòå÷ïä
-ðÁ×ÅÌ íÁÒØÑÎÏ×
-.br
-acid_jack@ukr.net
-
diff --git a/man/uk/autoirpm.8 b/man/uk/autoirpm.8 deleted file mode 100644 index 4cd2b6af..00000000 --- a/man/uk/autoirpm.8 +++ /dev/null @@ -1,51 +0,0 @@ -.TH autoirpm 8 "05 Sep 2000" "Mandrakesoft" "Linux-Mandrake" -.IX autoirpm -.SH îáú÷á -autoirpm \- Á×ÔÏÍÁÔÉÞÎÏ ×ÓÔÁÎÏ×ÌÀ¤ RPM, ÝÏ ×¦ÄÐÏצÄÁÀÔØ ×ÁÛ¦Ê ËÏÍÁÎĦ -.SH ÷éëïòéóôáîîñ -.B autoirpm -.SH ïðéó -autoirpm *ÞÁÒ¦×ÎÏ* ×ÇÁÄÕ¤, Ñ˦ ÐÁËÕÎËÉ ×ÁÍ ÐÏÔÒ¦ÂΦ ¦ ×ÓÔÁÎÏ×ÌÀ¤ -§È. õÑ×ÉÍÏ, ÝÏ ×É ÎÁÄÒÕËÕ×ÁÌÉ gmix ÝÏ ÚÁÐÕÓÔÉÔÉ Ú×ÕËÏ×ÉÊ Í¦ËÛÅÒ. ñËÝÏ -ÔÁËϧ ÐÒÏÇÒÁÍÉ ÎÅÍÁ¤, ×ÁÍ ÚÁÄÁ¤ÔØÓÑ ÚÁÐÉÔÁÎÎÑ, ÞÉ ÎÅ ÈÏÞÅÔÅ ×É -×ÓÔÁÎÏ×ÉÔÉ ÐÁËÕÎÏË gnome-media, × ÑËÏÍÕ ¤ ÐÒÏÇÒÁÍÁ gmix... -.PP -äÌÑ ÃØÏÇÏ ×ÉËÏÎÁÊÔÅ ÓÐÅÒÛÕ ÐÒÏÇÒÁÍÕ autoirpm.update-all, ÑËÁ צÄÓËÁÎÕ¤ -×Ó¦ ÐÁËÕÎËÉ ×¦ÄÏͦ urpmi ¦ ×ÉÚÎÁÞÉÔØ ×Ó¦ ÐÒÏÇÒÁÍÉ × ÎÉÈ. ð¦ÓÌÑ ÃØÏÇÏ -ÐÒÏÇÒÁÍÁ ÓÔ×ÏÒÀ¤ ÓÉÍ×ÏÌØΦ ÐÏÓÉÌÁÎÎÑ Õ ×¦ÄÐÏצÄÎÉÈ ËÁÔÁÌÏÇÁÈ Ú -ÄצÊËÏ×ÉÍÉ ÆÁÊÌÁÍÉ... -äÌÑ ÓÔÉÒÁÎÎÑ ×Ó¦È ÐÏÓÉÌÁÎØ ÓÔ×ÏÒÅÎÉÈ autoirpm.update ÓËÏÒÉÓÔÁÊÔÅÓØ -ÐÒÏÇÒÁÍÏÀ autoirpm.uninstall. -.PP -äÌÑ ÐÏÎÏ×ÌÅÎÎÑ ÄצÊËÏ×ÉÈ ÆÁÊÌ¦× × ÐÁËÕÎËÁÈ ÎÁ ÎÏÓ¦ÑÈ ÎÁÚ×ÁÎÉÈ × -<ÎÁÚ×É>, ÓËÏÒÉÓÔÁÊÔÅÓØ ÐÒÏÇÒÁÍÏÀ \fBautoirpm.update <ÎÁÚ×É>\fP. -.PP -äÌÑ ÐÏÎÏ×ÌÅÎÎÑ ÄצÊËÏ×ÉÈ ÆÁÊÌ¦× × ÐÁËÕÎËÁÈ ÎÁ ×Ó¦È ×¦ÄÏÍÉÈ urpmi -ÎÏÓ¦ÑÈ ÓËÏÒÉÓÔÁÊÔÅÓØ ËÏÍÁÎÄÏÀ \fBautoirpm.update-all\fP. -.PP -äÌÑ ÓÔÉÒÁÎÎÑ ×Ó¦È ÓÉÍ×ÏÌØÎÉÈ ÐÏÓÉÌÁÎØ ×ÓÔÁÎÏ×ÌÅÎÉÈ autoirpm, ×ÉËÏÎÁÊÔÅ -ËÏÍÁÎÄÕ \fBautoirpm.uninstall\fP. -.PP -ãÅ ÍÏÖÎÁ ×ÉËÏÒÉÓÔÏ×Õ×ÁÔÉ ÄÌÑ ÕÓÔÁÎÏ×ËÉ Ð¦ËÔÏÇÒÁÍ × ÍÅÎÀ ÐÁËÕÎËÏÍ autoirpm-icons. -.SH æáêìé -/etc/urpmi/autoirpm.deny -.br -öÏÄÅÎ ÄצÊËÏ×ÉÊ ÆÁÊÌ Ú ÐÅÒÅ̦ÞÅÎÉÈ ÔÕÔ ÐÁËÕÎË¦× ÎÅ ÐÒÉÚ×ÅÄÅ ÄÏ -Á×ÔÏÍÁÔÉÞÎϧ ÕÓÔÁÎÏ×ËÉ rpm. -.PP -/etc/urpmi/autoirpm.allow -.br -ñËÝÏ ÃÅÊ ÆÁÊÌ ¦ÓÎÕ¤, ÔÏ Ô¦ÌØËÉ Ô¦ ÐÁËÕÎËÉ, Ñ˦ ÐÅÒÅ̦ÞÅΦ ÔÕÔ ÍÏÖÎÁ -ÂÕÄÅ Á×ÔÏÍÁÔÉÞÎÏ ×ÓÔÁÎÏ×ÌÀ×ÁÔÉ. -auto-install. - -.SH "äé÷. ôáëïö" -urpmi(8) -.SH á÷ôïò -Pascal Rigaux, Mandrakesoft -.br -pixel@mandrakesoft.com -.SH -ðåòåëìáä -.br -äÍÉÔÒÏ ëÏ×ÁÌØÏ×, <kov@tokyo.emai.ne.jp> |