diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-07-09 19:48:39 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-07-09 19:48:39 +0000 |
commit | 9c4fdae3b9cec4a2ca1c0e41f16daf835966d314 (patch) | |
tree | 8473672bcf1aeafe85389f8561e4795abf6f6c6f /app-doc | |
parent | - amd64 profile updates for building with catalyst (diff) | |
download | gentoo-2-9c4fdae3b9cec4a2ca1c0e41f16daf835966d314.tar.gz gentoo-2-9c4fdae3b9cec4a2ca1c0e41f16daf835966d314.tar.bz2 gentoo-2-9c4fdae3b9cec4a2ca1c0e41f16daf835966d314.zip |
New version, using prepackaged tarballs. Fixes #97879.
(Portage version: 2.0.51.19)
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/quanta-docs/ChangeLog | 8 | ||||
-rw-r--r-- | app-doc/quanta-docs/files/digest-quanta-docs-20041123 | 5 | ||||
-rw-r--r-- | app-doc/quanta-docs/quanta-docs-20041123.ebuild | 37 |
3 files changed, 49 insertions, 1 deletions
diff --git a/app-doc/quanta-docs/ChangeLog b/app-doc/quanta-docs/ChangeLog index 3c78207f6c79..1f4eabd28d64 100644 --- a/app-doc/quanta-docs/ChangeLog +++ b/app-doc/quanta-docs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-doc/quanta-docs # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-doc/quanta-docs/ChangeLog,v 1.15 2005/07/02 02:59:44 hardave Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/quanta-docs/ChangeLog,v 1.16 2005/07/09 19:48:39 greg_g Exp $ + +*quanta-docs-20041123 (09 Jul 2005) + + 09 Jul 2005; Gregorio Guidi <greg_g@gentoo.org> + +quanta-docs-20041123.ebuild: + New version, using prepackaged tarballs. Fixes #97879. 02 Jul 2005; Hardave Riar <hardave@gentoo.org> quanta-docs-20030405.ebuild: diff --git a/app-doc/quanta-docs/files/digest-quanta-docs-20041123 b/app-doc/quanta-docs/files/digest-quanta-docs-20041123 new file mode 100644 index 000000000000..9f56bfc085ac --- /dev/null +++ b/app-doc/quanta-docs/files/digest-quanta-docs-20041123 @@ -0,0 +1,5 @@ +MD5 ceaf096eaee5088f1c30f19c847d4d5a quanta-docs-css-20041123.tar.bz2 121330 +MD5 b4fd9d450428173e0a122bf3d12936c3 quanta-docs-html-20041123.tar.bz2 93466 +MD5 5dd6762630b5933466b9de96af9c5abc quanta-docs-javascript-20041123.tar.bz2 332440 +MD5 55d9f7511a6afc9596266511fd81cb20 quanta-docs-php-20041123.tar.bz2 1350259 +MD5 b6e740e1c608b1c228c5130d6db0c67f quanta-docs-mysql-20041123.tar.bz2 520367 diff --git a/app-doc/quanta-docs/quanta-docs-20041123.ebuild b/app-doc/quanta-docs/quanta-docs-20041123.ebuild new file mode 100644 index 000000000000..08977a614fea --- /dev/null +++ b/app-doc/quanta-docs/quanta-docs-20041123.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/quanta-docs/quanta-docs-20041123.ebuild,v 1.1 2005/07/09 19:48:39 greg_g Exp $ + +DESCRIPTION="Language documentation files for quanta." +HOMEPAGE="http://quanta.kdewebdev.org/" +SRC_URI="mirror://gentoo/${PN}-css-${PV}.tar.bz2 + mirror://gentoo/${PN}-html-${PV}.tar.bz2 + mirror://gentoo/${PN}-javascript-${PV}.tar.bz2 + mirror://gentoo/${PN}-php-${PV}.tar.bz2 + mysql? ( mirror://gentoo/${PN}-mysql-${PV}.tar.bz2 )" +# These files are snapshots based respectively on: +# mirror://sourceforge/quanta/css.tar.bz2 +# mirror://sourceforge/quanta/html.tar.bz2 +# mirror://sourceforge/quanta/javascript.tar.bz2 +# mirror://sourceforge/quanta/php_manual_en_20030401.tar.bz2 +# mirror://sourceforge/quanta/mysql-20030405.tar.bz2 + +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="mysql" + +S=${WORKDIR} + +src_install() { + dodir /usr/share/apps/quanta/doc + + local docdirs="css html javascript php" + use mysql && docdirs="${docdirs} mysql" + + for i in ${docdirs}; do + cd "${S}/${i}" + cp -R "$i" "$i.docrc" "${D}/usr/share/apps/quanta/doc" + done +} |