blob: 1013d5daac8d950c518da312ff4af9ec940ec82a (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome2-user-docs/gnome2-user-docs-1.93-r1.ebuild,v 1.1 2002/06/30 03:11:37 spider Exp $
# Author and Maintainer : Spider <spider@gentoo.org>
DESCRIPTION="end user documentation for Gnome2 "
HOMEPAGE="http://www.gnome.org"
LICENSE="FDL-1.1"
DEPEND="virtual/glibc
>=app-text/docbook-sgml-utils-0.6.9
>=app-text/scrollkeeper-0.3.9"
RDEPEND=$DEPEND
SRC_URI="ftp://ftp.gnome.org/pub/gnome/pre-gnome2/sources/${PN}/${P}.tar.bz2"
S=${WORKDIR}/${P}
src_compile() {
econf
emake || die
}
src_install () {
einstall
}
pkg_postinst () {
scrollkeeper-update -p /var/lib/scrollkeeper
}
|