* [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild
@ 2002-03-12 14:09 Arnold de Bruijn
2002-03-12 15:10 ` Grant Goodyear
0 siblings, 1 reply; 5+ messages in thread
From: Arnold de Bruijn @ 2002-03-12 14:09 UTC (permalink / raw
To: Gentoo-dev mailinglist, Gentoo-user mailinglist
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 <aeoo@gentoo.org>
#
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:\(<path>"\)icons\("</path>\):\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
----------------------------------------------------------------------
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild
2002-03-12 14:09 [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild Arnold de Bruijn
@ 2002-03-12 15:10 ` Grant Goodyear
2002-03-12 23:14 ` mikepolniak
0 siblings, 1 reply; 5+ messages in thread
From: Grant Goodyear @ 2002-03-12 15:10 UTC (permalink / raw
To: gentoo-dev
> 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.
Cool! Please post a patch of the existing ebuild, if you would,
on bugs.gentoo.org (there are instructions at
http://www.gentoo.org/doc/ebuild-submit.html).
We're in a bit of a freeze right now as the developers work on
getting 1.0 ready, so it may be a while before it gets added.
Thanks!
-g2boojum-
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild
2002-03-12 15:10 ` Grant Goodyear
@ 2002-03-12 23:14 ` mikepolniak
2002-03-13 0:03 ` K.L. Davis
0 siblings, 1 reply; 5+ messages in thread
From: mikepolniak @ 2002-03-12 23:14 UTC (permalink / raw
To: gentoo-dev
On 12 Mar 2002 10:10:12 -0500
Grant Goodyear <g2boojum@gentoo.org> wrote:
> > 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.
>
> Cool! Please post a patch of the existing ebuild, if you would,
> on bugs.gentoo.org (there are instructions at
> http://www.gentoo.org/doc/ebuild-submit.html).
>
> We're in a bit of a freeze right now as the developers work on
> getting 1.0 ready, so it may be a while before it gets added.
>
There is an existing gentoo-0.11.18.ebuild in /usr/portage/app-misc/gentoo/
dated Feb2 which you can update.
And from the ChangeLog:
New ebuild for new release of Gentoo File Manager. Everything should work
now. System-wide config files are in /etc/gentoo/ directory. User config
files are in ~/.gentoorc file.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild
2002-03-12 23:14 ` mikepolniak
@ 2002-03-13 0:03 ` K.L. Davis
2002-03-13 2:37 ` mikepolniak
0 siblings, 1 reply; 5+ messages in thread
From: K.L. Davis @ 2002-03-13 0:03 UTC (permalink / raw
To: gentoo-dev
I just DLed 11.22 -- supposed to have fixed the broken automount :/
gentoo is (IMHO) one of the best file managers going... love the sorta mc feel and the Amiga roots! Well... of to build 22 and see what we got
On Tue, 12 Mar 2002 18:14:10 -0500
mikepolniak <mikpolniak@adelphia.net> wrote:
> On 12 Mar 2002 10:10:12 -0500
> Grant Goodyear <g2boojum@gentoo.org> wrote:
>
> > > 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.
> >
> > Cool! Please post a patch of the existing ebuild, if you would,
> > on bugs.gentoo.org (there are instructions at
> > http://www.gentoo.org/doc/ebuild-submit.html).
> >
> > We're in a bit of a freeze right now as the developers work on
> > getting 1.0 ready, so it may be a while before it gets added.
> >
> There is an existing gentoo-0.11.18.ebuild in /usr/portage/app-misc/gentoo/
> dated Feb2 which you can update.
>
> And from the ChangeLog:
> New ebuild for new release of Gentoo File Manager. Everything should work
> now. System-wide config files are in /etc/gentoo/ directory. User config
> files are in ~/.gentoorc file.
> _______________________________________________
> gentoo-dev mailing list
> gentoo-dev@gentoo.org
> http://lists.gentoo.org/mailman/listinfo/gentoo-dev
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild
2002-03-13 0:03 ` K.L. Davis
@ 2002-03-13 2:37 ` mikepolniak
0 siblings, 0 replies; 5+ messages in thread
From: mikepolniak @ 2002-03-13 2:37 UTC (permalink / raw
To: gentoo-dev
On Tue, 12 Mar 2002 19:03:54 -0500
"K.L. Davis" <kdavis@nanux.com> wrote:
> I just DLed 11.22 -- supposed to have fixed the broken automount :/
>
> gentoo is (IMHO) one of the best file managers going... love the sorta mc feel and the Amiga roots! Well... of to build 22 and see what we got
I use a similar file manager called emelfm, for which i have submitted an ebuild. Its
available at : http://emelfm.sourceforge.net
And you can read about how it compares to mc/Amiga in Linux Gazette, issue #61 at:
http://www.linuxgazette.com/issue61/evans.html
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-03-13 2:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-12 14:09 [gentoo-dev] my first ebuild contribution: gentoo-0.11.21.ebuild Arnold de Bruijn
2002-03-12 15:10 ` Grant Goodyear
2002-03-12 23:14 ` mikepolniak
2002-03-13 0:03 ` K.L. Davis
2002-03-13 2:37 ` mikepolniak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox