diff options
author | Hannes Mehnert <hannes@gentoo.org> | 2002-12-17 17:54:33 +0000 |
---|---|---|
committer | Hannes Mehnert <hannes@gentoo.org> | 2002-12-17 17:54:33 +0000 |
commit | 4051896bfe7ce29196f9833b6ad489168512cea7 (patch) | |
tree | 974c096862a867453f5aa160a8fe15816ae6b8cc /app-doc | |
parent | version bump (diff) | |
download | historical-4051896bfe7ce29196f9833b6ad489168512cea7.tar.gz historical-4051896bfe7ce29196f9833b6ad489168512cea7.tar.bz2 historical-4051896bfe7ce29196f9833b6ad489168512cea7.zip |
version bump
Diffstat (limited to 'app-doc')
-rw-r--r-- | app-doc/qt-docs/ChangeLog | 7 | ||||
-rw-r--r-- | app-doc/qt-docs/files/digest-qt-docs-3.1.1 | 1 | ||||
-rw-r--r-- | app-doc/qt-docs/qt-docs-3.1.1.ebuild | 40 |
3 files changed, 47 insertions, 1 deletions
diff --git a/app-doc/qt-docs/ChangeLog b/app-doc/qt-docs/ChangeLog index dbd3525d2075..5c2c698ee99e 100644 --- a/app-doc/qt-docs/ChangeLog +++ b/app-doc/qt-docs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-doc/qt-docs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-doc/qt-docs/ChangeLog,v 1.9 2002/12/16 02:22:30 hannes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-doc/qt-docs/ChangeLog,v 1.10 2002/12/17 17:54:33 hannes Exp $ + +*qt-docs-3.1.1 (17 Dec 2002) + + 17 Dec 2002; Hannes Mehnert <hannes@gentoo.org> qt-docs-3.1.1.ebuild: + version bump 15 Dec 2002; Hannes Mehnert <hannes@gentoo.org> qt-docs-3.1.0.ebuild: changed KEYWORDS to stable for all archs. Thanks to gilles_gros@yahoo.com diff --git a/app-doc/qt-docs/files/digest-qt-docs-3.1.1 b/app-doc/qt-docs/files/digest-qt-docs-3.1.1 new file mode 100644 index 000000000000..d4b747ade4b0 --- /dev/null +++ b/app-doc/qt-docs/files/digest-qt-docs-3.1.1 @@ -0,0 +1 @@ +MD5 977b9f59eed14f33343a797544b5418a qt-x11-free-3.1.1.tar.bz2 12393902 diff --git a/app-doc/qt-docs/qt-docs-3.1.1.ebuild b/app-doc/qt-docs/qt-docs-3.1.1.ebuild new file mode 100644 index 000000000000..6ff89566e835 --- /dev/null +++ b/app-doc/qt-docs/qt-docs-3.1.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-doc/qt-docs/qt-docs-3.1.1.ebuild,v 1.1 2002/12/17 17:54:33 hannes Exp $ + +IUSE="" +S=${WORKDIR}/qt-x11-free-${PV} +SRC_URI="ftp://ftp.trolltech.com/qt/source/qt-x11-free-${PV}.tar.bz2" +HOMEPAGE="http://www.trolltech.com/" +DESCRIPTION="Documentation for the QT ${PV} API" +KEYWORDS="~x86 ~sparc ~ppc ~alpha" +SLOT="3" +LICENSE="QPL-1.0" + +src_compile() { + einfo "Nothing to compile." +} + +src_install() { + QTBASE=/usr/qt/3 + export QTDIR=${S} + cd ${S} + # misc + insinto /etc/env.d + doins ${FILESDIR}/45qt-docs3 + + # docs + cd ${S}/doc + dodir ${QTBASE}/doc + for x in html flyers; do + cp -r $x ${D}/${QTBASE}/doc + done + + # manpages + cp -r ${S}/doc/man ${D}/${QTBASE} + # examples + cp -r ${S}/examples ${D}/${QTBASE} + # tutorials + cp -r ${S}/tutorial ${D}/${QTBASE} + +} |