From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=DMARC_NONE,MAILING_LIST_MULTI autolearn=unavailable autolearn_force=no version=4.0.0 Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by chiba.3jane.net (Postfix) with ESMTP id 8AB952006002; Tue, 12 Mar 2002 08:15:02 -0600 (CST) Received: from mobilehq ([80.60.5.152]) by smtp03.wxs.nl (Netscape Messaging Server 4.15) with ESMTP id GSV63H00.HRW; Tue, 12 Mar 2002 15:11:41 +0100 From: Arnold de Bruijn To: Gentoo-dev mailinglist , Gentoo-user mailinglist Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.2 Date: 12 Mar 2002 15:09:15 +0100 Message-Id: <1015942156.6979.12.camel@Mobilehq> Mime-Version: 1.0 Subject: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild Sender: gentoo-dev-admin@gentoo.org Errors-To: gentoo-dev-admin@gentoo.org X-BeenThere: gentoo-dev@gentoo.org X-Mailman-Version: 2.0.6 Precedence: bulk Reply-To: gentoo-dev@gentoo.org List-Help: List-Post: List-Subscribe: , List-Id: Gentoo Linux developer list List-Unsubscribe: , List-Archive: X-Archives-Salt: f2fd80e4-ab15-43cb-be87-aeead9cfe3b9 X-Archives-Hash: fa9fc8d4483e3f6dd7f54a53f96ed469 Hi all, While surfing on the net I discovered gentoo (an extremely handy file manager app). Made an ebuild for the new version, using a bit of copy and paste. I've included the ebuild and digest file for anybody who wants to use them. greetz, Arnold /usr/portage/app-misc/gentoo/gentoo-0.11.21.ebuild ---------------------------------------------------------------------- # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Leo Lipelis # S=${WORKDIR}/${P} DESCRIPTION="A modern GTK+ based filemanager for any WM" SRC_URI="http://prdownloads.sourceforge.net/gentoo/${P}.tar.gz" HOMEPAGE="http://www.obsession.se/gentoo/" DEPEND=">=x11-libs/gtk+-1.2.0" src_compile() { ./configure \ --build=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --sysconfdir=/etc/gentoo || die "./configure failed" emake || die } src_install() { make DESTDIR=${D} install || die cd ${D}/etc/gentoo mv gentoorc gentoorc.orig sed -e 's:\("\)icons\("\):\1/usr/share/gentoo/icons\2:' \ gentoorc.orig > gentoorc rm gentoorc.orig } ---------------------------------------------------------------------- /usr/portage/app-misc/gentoo/files/digest-gentoo-0.11.21 ---------------------------------------------------------------------- MD5 6269044a70d6f89fd3fd5417ee6b3830 gentoo-0.11.21.tar.gz 728226 ----------------------------------------------------------------------