Gentoo Archives: gentoo-dev

From: Arnold de Bruijn <arnold.linux@××××××.nl>
To: Gentoo-dev mailinglist <gentoo-dev@g.o>, Gentoo-user mailinglist <gentoo-user@g.o>
Subject: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild
Date: Tue, 12 Mar 2002 08:15:02
Message-Id: 1015942156.6979.12.camel@Mobilehq
1 Hi all,
2
3 While surfing on the net I discovered gentoo (an extremely handy file
4 manager app). Made an ebuild for the new version, using a bit of copy
5 and paste. I've included the ebuild and digest file for anybody who
6 wants to use them.
7
8 greetz, Arnold
9
10
11
12 /usr/portage/app-misc/gentoo/gentoo-0.11.21.ebuild
13 ----------------------------------------------------------------------
14 # Copyright 1999-2000 Gentoo Technologies, Inc.
15 # Distributed under the terms of the GNU General Public License, v2 or
16 later
17 # Author Leo Lipelis <aeoo@g.o>
18 #
19
20 S=${WORKDIR}/${P}
21 DESCRIPTION="A modern GTK+ based filemanager for any WM"
22 SRC_URI="http://prdownloads.sourceforge.net/gentoo/${P}.tar.gz"
23 HOMEPAGE="http://www.obsession.se/gentoo/"
24
25 DEPEND=">=x11-libs/gtk+-1.2.0"
26
27 src_compile() {
28 ./configure \
29 --build=${CHOST} \
30 --prefix=/usr \
31 --infodir=/usr/share/info \
32 --mandir=/usr/share/man \
33 --sysconfdir=/etc/gentoo || die "./configure failed"
34 emake || die
35 }
36
37 src_install() {
38 make DESTDIR=${D} install || die
39 cd ${D}/etc/gentoo
40 mv gentoorc gentoorc.orig
41 sed -e
42 's:\(<path>"\)icons\("</path>\):\1/usr/share/gentoo/icons\2:' \
43 gentoorc.orig > gentoorc
44 rm gentoorc.orig
45 }
46 ----------------------------------------------------------------------
47
48
49
50 /usr/portage/app-misc/gentoo/files/digest-gentoo-0.11.21
51 ----------------------------------------------------------------------
52 MD5 6269044a70d6f89fd3fd5417ee6b3830 gentoo-0.11.21.tar.gz 728226
53 ----------------------------------------------------------------------

Replies

Subject Author
Re: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild Grant Goodyear <g2boojum@g.o>