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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,facb32ff88af000c X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post02.iad.highwinds-media.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail Newsgroups: comp.lang.ada Subject: Re: QtAda 3.1 Debian References: From: Stephen Leake Date: Sun, 20 Dec 2009 04:19:06 -0500 Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (windows-nt) Cancel-Lock: sha1:nDbiQmOYQfbOpS6rLi7sbFkOaVM= MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: 683474b2dec34e197caa720334 Xref: g2news1.google.com comp.lang.ada:8464 Date: 2009-12-20T04:19:06-05:00 List-Id: Stefan Soos writes: > is there a way to get qtada-gpl-3.1 compiled with Debian's gnat > compiler? gprbuild and gprconfig aren't present on my system and I > can't find any package containing them, so the ./configure script > fails to run. You can use the GNAT GPL distribution (http://libre.adacore.com/libre/), instead of the Debian GNAT. You have to add the QtAda moc tool to gprbuild. here's my (very concise) installation notes: gnat 2009 in /opt/gnat/2009 qtada in /opt/qtada/3.0.0 su cd /home/Projects/ mkdir gnat tar zxf gnat-gpl-2009-1-i686-gnu-linux-libc2.3-bin.tar.gz cd gnat-2009-i686-gnu-linux-libc2.3-bin ./doinstall /opt/gnat/2009 export PATH=/opt/gnat/2009/bin:$PATH cd .. tar zxf asis-gpl-2009-src.tgz cd asis-2009-src make make install apt-get install libqt4-dev cd /home/Projects/qt tar zxf qtada-gpl-3.0.0.tar.gz cd qtada-gpl-3.0.0 ./configure --prefix=/opt/qtada/3.0.0 make install export PATH=/opt/qtada/3.0.0/bin:$PATH gprconfig --db /opt/qtada/3.0.0/share/gprconfig I'm thinking about packaging gprbuild for the next release of Debian; this post gives me more incentive. Feel free to bug me about it later :). -- -- Stephe