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=1.1 required=5.0 tests=DATE_IN_PAST_12_24,DMARC_NONE, INVALID_DATE,MAILING_LIST_MULTI autolearn=no autolearn_force=no version=4.0.0 Received: from mail5.speakeasy.net ([216.254.0.205]) by cvs.gentoo.org with esmtp (Exim 3.30 #1) id 15qN1p-0002oL-00 for gentoo-dev@cvs.gentoo.org; Sun, 07 Oct 2001 17:08:14 -0600 Received: (qmail 48449 invoked from network); 7 Oct 2001 23:08:54 -0000 Received: from unknown (HELO yde.flatmonk.org) ([66.92.103.162]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 7 Oct 2001 23:08:54 -0000 Received: from agriffis by yde.flatmonk.org with local (Exim 3.33 #1 (Debian)) id 15qN2T-000596-00 for ; Sun, 07 Oct 2001 18:08:53 -0500 From: Aron Griffis To: gentoo-dev@cvs.gentoo.org Subject: Re: [gentoo-dev] Updated edb-1.0.3 ebuild file Message-ID: <20011007180853.B20363@yde.flatmonk.org> Mail-Followup-To: gentoo-dev@cvs.gentoo.org References: <20011007174136.B12022@swool.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20011007174136.B12022@swool.com> User-Agent: Mutt/1.3.22.1i X-Mailer: Mutt http://www.mutt.org/ X-Editor: Vim http://www.vim.org/ 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: Sun Oct 7 17:09:01 2001 X-Original-Date: Sun, 7 Oct 2001 18:08:53 -0500 X-Archives-Salt: 136af968-6c48-4ba6-8d00-f94668e4bff2 X-Archives-Hash: b0e0595d89729027cb5598f565896ddd Hello Joshua, I won't add this ebuild personally, because I'm not on the Desktop Team, however a couple things to note. (1) "try" is deprecated. Its function is now replaced by "die". In other words, you can remove the references to "try" below. (2) It isn't necessary to "cd $S" in src_compile or src_install. That is the default directory for those functions. Aron Joshua Pierre wrote: [Sun Oct 07 2001, 04:41:36AM EST] > # Distributed under the terms of the GNU General Public License, v2 or later > # Author Joshua Pierre > > S=${WORKDIR}/${P} > DESCRIPTION="Enlightenment Data Base library" > SRC_URI="http://www.au.rasterman.com/files/edb-1.0.3.tar.gz" > HOMEPAGE="http://www.enlightenment.org/" > > RDEPEND="virtual/glibc > >=x11-libs/gtk+-1.2.10-r4" > DEPEND="$RDEPEND sys-apps/which" > > src_compile() { > cd $S > try ./configure --prefix=/usr --host=${CHOST} || die > try make || die > } > > src_install() { > cd $S > try make install DESTDIR=${D} || die > dodoc README AUTHORS COPYING src/LICENSE > }