Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 247 - modified ebuild for gentoo 0.11.18 (diff gentoo-0.11.16-r1.ebuild gentoo-0.11.18.ebuild)
Summary: modified ebuild for gentoo 0.11.18 (diff gentoo-0.11.16-r1.ebuild gentoo-0.11...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] GNOME (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Leo Lipelis (RETIRED)
URL:
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2002-01-20 18:00 UTC by bnl
Modified: 2002-02-02 03:03 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description bnl 2002-01-20 18:00:40 UTC
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# Modified to work with 0.11.18 <bnl@eecs.berkeley.edu> Jan 20, 2002
# 
/space/gentoo/cvsroot/gentoo-x86/app-misc/gentoo/gentoo-0.11.16-r1.ebuild,v 
1.2 2001/10/07 16:52:06 hallski Exp


S=${WORKDIR}/${P}
DESCRIPTION="A gnome based filemanager"
SRC_URI="http://prdownloads.sourceforge.net/gentoo/${P}.tar.gz"
HOMEPAGE="http://www.obsession.se/gentoo/"

DEPEND=">=gnome-base/gnome-core-1.4.0.4-r1 >=x11-libs/gtk+-1.2.0"

src_compile() {

        ./configure --host=${CHOST} --prefix=/usr || die
        make || die

}

src_install() {
        cd src
        into /usr
        dobin gentoo

        cd ..
        dodir /usr/share
        dodir /usr/share/gentoo

        # Maybe fixed later
        cp -a icons ${D}/usr/share/gentoo
        chmod 755 ${D}/usr/share/gentoo/icons

        insinto /etc/gnome/gentoo
        doins gentoorc-example

        dodoc COPYING README TODO
}
Comment 1 Mikael Hallendal (hallski) (RETIRED) gentoo-dev 2002-01-20 19:14:00 UTC
when sending in changes please apply a diff, that way it's easier to see what
has changed.
Comment 2 bnl 2002-01-20 19:39:05 UTC
> # Modified to work with 0.11.18 <bnl@eecs.berkeley.edu>
9c10
< SRC_URI="http://www.obsession.se/gentoo/${P}.tar.gz"
---
> SRC_URI="http://prdownloads.sourceforge.net/gentoo/${P}.tar.gz"
12c13
< DEPEND=">=gnome-base/gnome-core-1.4.0.4-r1"
---
> DEPEND=">=gnome-base/gnome-core-1.4.0.4-r1 >=x11-libs/gtk+-1.2.0"
15,22d15
< 	cd src
< 	cp Makefile Makefile.orig
< 	sed -e "s:= /usr/local:= /usr:g" \
<       	    -e "s:ICONS:ICONS= /usr/share/gentoo #:g" \
<             -e 's:${prefix}/etc:/etc/gnome/gentoo:g' \
<             -e 
's:${exec_prefix}/lib/gentoo/icons:${exec_prefix}/share/gentoo/icons:g' 
Makefile.orig > Makefile
< 
< 	rm Makefile.orig
24,25c17
< 	cd ..
< 	
---
> 	./configure --host=${CHOST} --prefix=/usr || die
26a19
> 
Comment 3 Leo Lipelis (RETIRED) gentoo-dev 2002-02-02 03:03:38 UTC
Didn't need this patch.

In the future, please use diff -u.  I do not like to read any other diff format.
Thanks.