summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Mehnert <hannes@gentoo.org>2002-11-14 20:10:50 +0000
committerHannes Mehnert <hannes@gentoo.org>2002-11-14 20:10:50 +0000
commit082aab865d3f8fc3074cb9a8520f6e8d4d2a4e44 (patch)
tree60af6264cb276fddc6f8e5c302d70c1760ac2c99 /app-doc
parentversion bump (diff)
downloadhistorical-082aab865d3f8fc3074cb9a8520f6e8d4d2a4e44.tar.gz
historical-082aab865d3f8fc3074cb9a8520f6e8d4d2a4e44.tar.bz2
historical-082aab865d3f8fc3074cb9a8520f6e8d4d2a4e44.zip
version bump
Diffstat (limited to 'app-doc')
-rw-r--r--app-doc/qt-docs/ChangeLog7
-rw-r--r--app-doc/qt-docs/files/digest-qt-docs-3.1.01
-rw-r--r--app-doc/qt-docs/qt-docs-3.1.0.ebuild40
3 files changed, 47 insertions, 1 deletions
diff --git a/app-doc/qt-docs/ChangeLog b/app-doc/qt-docs/ChangeLog
index c8791fe9f73f..b9b1f97c6641 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.5 2002/07/23 04:26:45 danarmak Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/qt-docs/ChangeLog,v 1.6 2002/11/14 20:10:50 hannes Exp $
+
+*qt-docs-3.1.0 (14 Nov 2002)
+
+ 14 Nov 2002; Hannes Mehnert <hannes@gentoo.org> qt-docs-3.1.0.ebuild:
+ version bump
22 Jul 2002; Phil Bordelon <sunflare@gentoo.org> qt-docs-3.0.5.ebuild :
diff --git a/app-doc/qt-docs/files/digest-qt-docs-3.1.0 b/app-doc/qt-docs/files/digest-qt-docs-3.1.0
new file mode 100644
index 000000000000..5601495b3a0e
--- /dev/null
+++ b/app-doc/qt-docs/files/digest-qt-docs-3.1.0
@@ -0,0 +1 @@
+MD5 594a00a7eeb463251ef56515d6f81b0a qt-x11-free-3.1.0.tar.bz2 13375991
diff --git a/app-doc/qt-docs/qt-docs-3.1.0.ebuild b/app-doc/qt-docs/qt-docs-3.1.0.ebuild
new file mode 100644
index 000000000000..781ee4300d00
--- /dev/null
+++ b/app-doc/qt-docs/qt-docs-3.1.0.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.0.ebuild,v 1.1 2002/11/14 20:10:50 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 ~sparc64 ~ppc"
+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}
+
+}