From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: ** X-Spam-Status: No, score=2.6 required=5.0 tests=DATE_IN_PAST_06_12, DKIM_ADSP_NXDOMAIN,DMARC_NONE,INVALID_DATE,MAILING_LIST_MULTI, RDNS_DYNAMIC autolearn=no autolearn_force=no version=4.0.0 Received: from 100.209-115-231-0.interbaun.com ([209.115.231.100] helo=taipan.mudshark.org) by cvs.gentoo.org with esmtp (Exim 3.30 #1) id 15SYTw-000506-00 for gentoo-dev@cvs.gentoo.org; Fri, 03 Aug 2001 00:30:48 -0600 Received: from dante.taipan.mudshark.org (dante.taipan.mudshark.org [192.168.1.2]) by taipan.mudshark.org (Postfix) with ESMTP id 7B4074F22 for ; Fri, 3 Aug 2001 00:29:53 -0600 (MDT) Received: by dante.taipan.mudshark.org (Postfix, from userid 1000) id 88C5C34385; Fri, 3 Aug 2001 00:42:15 -0600 (MDT) From: Craig Joly To: gentoo-dev@cvs.gentoo.org Subject: Re: [gentoo-dev] gnome/gtk app ebuilds Message-ID: <20010803004214.A2165@dante.taipan.mudshark.org> References: <20010802212819.A20040@dante.taipan.mudshark.org> <20010802220710.B8180@cvs.gentoo.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010802220710.B8180@cvs.gentoo.org>; from drobbins@gentoo.org on Thu, Aug 02, 2001 at 10:07:10PM -0600 Sender: gentoo-dev-admin@cvs.gentoo.org Errors-To: gentoo-dev-admin@cvs.gentoo.org X-BeenThere: gentoo-dev@cvs.gentoo.org X-Mailman-Version: 2.0 Precedence: bulk Reply-To: gentoo-dev@cvs.gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux development list List-Unsubscribe: , List-Archive: Date: Fri Aug 3 00:31:02 2001 X-Original-Date: Fri, 3 Aug 2001 00:42:14 -0600 X-Archives-Salt: ce63f811-7b0a-46ce-898e-a54ada0ba385 X-Archives-Hash: 8e4404ea3acbfa74cdecdf389da5d168 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Aug 02, 2001 at 10:07:10PM -0600, Daniel Robbins wrote: > On Thu, Aug 02, 2001 at 09:28:19PM -0600, Craig Joly wrote: > > Four new ebuilds: > > SCREEM - a GNOME Site Creation and Editing EnvironMent > > ithought - a web enabled outliner / diary using gtk+ > > gaby - GNOME or gtk+ personal database > > feh - everybody's favorite (well mine anyway) image viewer, and it's > > not gtk or gnome, just imlib2 > > OK, another great set of ebuilds... thanks! A question. Have you personally > verified that the "make DESTDIR=${D} install" override works perfectly for all > of these ebuilds, by actually inspecting the install routines in the Makefiles? > If so, then you're ready for a developer account. > You caught me. Out of the ebuilds I've made, I was positive about the install routines in apmd, pcmcia and bbrun. I've checked the other ones and feh, ithought, bbapm, bbmail, bbrun and toolbox all install correctly. Ben has done some serious modifications to my apmd ebuild, so I guess that doesn't count. I should probably re-emerge that. gaby and screem on the other hand, have a few problems. The nls files don't follow DESTIR=${D}. gaby is creating several symlinks in /PREFIX/bin/. SCREEM can't find it's help files. Oops. Can emerge handle symlinks ok, or should they be created in the src_install section of the ebuild file? I'll be busy over the next few days, but I'll try to get these updated by Monday. To hold you over until then, here are some very minor fixes to pcmcia-cs and ithought. Just fixes with dodoc. Craig --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="pcmcia-cs-3.1.27.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Craig Joly # $Header$ S=${WORKDIR}/${P} DESCRIPTION="PCMCIA tools for Linux" SRC_URI="http://prdownloads.sourceforge.net/pcmcia-cs/${P}.tar.gz" HOMEPAGE="http://pcmcia-cs.sourceforge.net" src_compile() { ./Configure -n --target=${D} try emake all } src_install () { try make install rm ${D}/etc/rc.d/rc.pcmcia insinto /etc/rc.d/init.d insopts -m 0755 doins ${FILESDIR}/pcmcia dodoc BUGS CHANGES COPYING LICENSE MAINTAINERS README README-2.4 \ SUPPORTED.CARDS cd doc docdir doc dodoc * } --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ithought-0.0.5.ebuild" # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Craig Joly # $Header$ #emerge doesn't yet support things like a5 P=ithought-a5 S=${WORKDIR}/${P} DESCRIPTION="An internet-aware personal thought manager" SRC_URI="http://download.sourceforge.net/ithought/ithought-a5.tar.gz" HOMEPAGE="http://ithought.sourceforge.net" DEPEND=">=x11-libs/gtk+-1.2 gnome-libs/libxml2" src_compile() { try ./configure --host=${CHOST} try emake } src_install () { try make DESTDIR=${D} install dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO } --ew6BAiZeqk4r7MaW--