blob: 5bdfaf558b5bc8de04dfcdad5027b203941743c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnobog/gnobog-0.4.3.ebuild,v 1.5 2002/12/09 04:22:39 manson Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Gnome Bookmarks Organizer"
SRC_URI="http://freesoftware.fsf.org/download/${PN}/${P}.tar.gz"
HOMEPAGE="http://gnobog.sourceforge.net"
DEPEND=">=gnome-base/libglade-0.17-r5"
RDEPEND="$DEPEND"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc "
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man \
--datadir=/usr/share \
--includedir=/usr/include/libglade-1.0 || die "configure failed"
emake || die "Compile failed"
}
src_install () {
make \
prefix=${D}/usr \
infodir=${D}/usr/share/info \
mandir=${D}/usr/share/man \
datadir=${D}/usr/share \
install || die "install failed"
dodoc ChangeLog README
}
|