blob: cdaf93de11ca57bfedf49e0919a708c4306a45d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/quanta-docs/quanta-docs-1.0.ebuild,v 1.13 2003/09/27 01:27:47 weeve Exp $
S=${WORKDIR}
DESCRIPTION="Lots of docs for quanta"
SRC_URI="mirror://sourceforge/quanta/quanta-css-${PV}.tar.bz2
mirror://sourceforge/quanta/quanta-html-${PV}.tar.bz2
mirror://sourceforge/quanta/quanta-javascript-${PV}.tar.bz2
mirror://sourceforge/quanta/quanta-php-${PV}.tar.bz2"
HOMEPAGE="http://quanta.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc"
src_install() {
dodir /usr/share/apps/quanta/doc
for i in css html javascript php ; do
cd ${S}/${i}
cp -R $i $i.docrc ${D}/usr/share/apps/quanta/doc
done
}
|