From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,FREEMAIL_FROM, INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,19dfddc263ff497e X-Google-Attributes: gid103376,public From: "Juergen Pfeifer" Subject: Re: Using GNAT at SuSE 6.3 Date: 2000/01/13 Message-ID: <85j73t$ofg$1@news08.btx.dtag.de>#1/1 X-Deja-AN: 571888772 Content-Transfer-Encoding: 8bit References: <3869CC93.AE630E5B@t-online.de> <87hfh29fjc.fsf@deneb.cygnus.argh.org> <387BAB0E.B43D0242@mtek.chalmers.se> <387BCD19.277F0D7E@gmx.net> <387C9C3A.4F4238AA@mtek.chalmers.se> X-Sender: 340028232866-0001@t-dialin.net X-Priority: 3 Content-Type: text/plain; charset=ISO-8859-1 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 X-Complaints-To: abuse@t-online.de X-Trace: news08.btx.dtag.de 947724221 25072 340028232866-0001 000113 00:43:41 Organization: T-Online X-MSMail-Priority: Normal Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 2000-01-13T00:00:00+00:00 List-Id: > Hello! > > You wrote the package, right? > > Well here goes: > > ]# rpm -ivh gnat-3.12p_glibc2.1-1-8.i386.rpm > package gnat-3.12p-1-8 is already installed > ]# rpm -q gnat-3.12p_glibc2.1-1-8.i386.rpm > package gnat-3.12p_glibc2.1-1-8.i386.rpm is not installed > > So, no what? > > I haven't a clue... > > 1. For the install option of RPM you have to use the complete filename of the package as you did. It seems you did that before, thats why rpm complains... 2. The package name is not the filename! For the query you should try "rpm -q gnat-3.12p" (thats the package name). You can get the package name from the package file by using "rpm -q -p gnat-3.12p_glibc2.1-1-8.i386.rpm -i" 3. With that you just installed the runtime! To get the compiler and the development tools, you must at least install the package gnat-devel-3.12p_glibc2.1-1-8.i386.rpm 4. After that you can use the command "gnatmake" to build your project or "gnatgcc" to compile an individual unit. 5. You may go to the directory /usr/doc/gnat-devel-3.12p/examples and type "make". This should compile and run a few examples. If that works you have a good chance that everything is setup correctly. Cheers J�rgen