blob: 1ede204f91d053762cd77f19882069de5c0ab19b (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/app-doc/quanta-docs/quanta-docs-1.0.ebuild,v 1.6 2002/08/01 11:58:57 seemant Exp $
S=${WORKDIR}
DESCRIPTION="Lots of docs for quanta"
list="quanta-css-${PV}.tar.bz2
quanta-html-${PV}.tar.bz2
quanta-javascript-${PV}.tar.bz2
quanta-php-${PV}.tar.bz2"
for x in $list; do
SRC_URI="$SRC_URI mirror://sourceforge/quanta/$x"
done
HOMEPAGE="http://quanta.sourceforge.net"
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
}
|