diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 14:02:44 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 14:02:44 +0000 |
commit | 470dc23b8b9d185004052367de2c6a7e0c1bbba9 (patch) | |
tree | bb27bf40001c3c52ad778e50b7ee4a390238e724 /app-doc/quanta-docs | |
parent | open publication license added (diff) | |
download | historical-470dc23b8b9d185004052367de2c6a7e0c1bbba9.tar.gz historical-470dc23b8b9d185004052367de2c6a7e0c1bbba9.tar.bz2 historical-470dc23b8b9d185004052367de2c6a7e0c1bbba9.zip |
repoman'd
Diffstat (limited to 'app-doc/quanta-docs')
-rw-r--r-- | app-doc/quanta-docs/quanta-docs-1.0.ebuild | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/app-doc/quanta-docs/quanta-docs-1.0.ebuild b/app-doc/quanta-docs/quanta-docs-1.0.ebuild index 1ede204f91d0..d1197d2d955a 100644 --- a/app-doc/quanta-docs/quanta-docs-1.0.ebuild +++ b/app-doc/quanta-docs/quanta-docs-1.0.ebuild @@ -1,29 +1,28 @@ # 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 $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/quanta-docs/quanta-docs-1.0.ebuild,v 1.7 2002/08/01 14:02:43 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 +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" + 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 + 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 } - |