diff options
author | Ferry Meyndert <m0rpheus@gentoo.org> | 2002-05-31 10:22:43 +0000 |
---|---|---|
committer | Ferry Meyndert <m0rpheus@gentoo.org> | 2002-05-31 10:22:43 +0000 |
commit | a498198aaaa87d4fe5128d6ecbfb624aa7d6db2f (patch) | |
tree | 04774d78e7e8806c09a146a43031abfc8d2f31f4 /dev-libs | |
parent | lisece problem (diff) | |
download | gentoo-2-a498198aaaa87d4fe5128d6ecbfb624aa7d6db2f.tar.gz gentoo-2-a498198aaaa87d4fe5128d6ecbfb624aa7d6db2f.tar.bz2 gentoo-2-a498198aaaa87d4fe5128d6ecbfb624aa7d6db2f.zip |
added tinyq dev lib
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/tinyq/ChangeLog | 25 | ||||
-rw-r--r-- | dev-libs/tinyq/files/47tinyq | 5 | ||||
-rw-r--r-- | dev-libs/tinyq/files/digest-tinyq-3.0.4 | 1 | ||||
-rw-r--r-- | dev-libs/tinyq/tinyq-3.0.4.ebuild | 32 |
4 files changed, 63 insertions, 0 deletions
diff --git a/dev-libs/tinyq/ChangeLog b/dev-libs/tinyq/ChangeLog new file mode 100644 index 000000000000..b3498d42039a --- /dev/null +++ b/dev-libs/tinyq/ChangeLog @@ -0,0 +1,25 @@ +# ChangeLog for dev-libs/tinyq +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# /space/gentoo/cvsroot/gentoo-x86/dev-libs/tinyqt/ChangeLog,v 1.1 2002/03/26 10:52:11 gbevin Exp + +*tinyq-3.0.4 (30 May 2002) + + 26 Mar 2002; G.Bevin <gbevin@uwyn.com> : tinyq-3.0.4.ebuild, + files/digest-tinyq-3.0.4 + + Changed to TinyQ due to trademark issues. + +*tinyqt-3.0.3 (26 Mar 2002) + + 26 Mar 2002; G.Bevin <gbevin@gentoo.org> : tinyqt-3.0.3.ebuild, + files/digest-tinyqt-3.0.3 + + Upgraded to version 3.0.3 and moved to the dev-libs category instead. + +*tinyqt-3.0.1 (22 Feb 2002) + + 22 Feb 2002; G.Bevin <gbevin@gentoo.org> : + + Stripped down Qt 3 to support everything that's needed to do commanline + development without any GUI classes. Thus providing a nice C++ framework + for console applications without having to resort to STL or other bloatware. diff --git a/dev-libs/tinyq/files/47tinyq b/dev-libs/tinyq/files/47tinyq new file mode 100644 index 000000000000..172b3e049af7 --- /dev/null +++ b/dev-libs/tinyq/files/47tinyq @@ -0,0 +1,5 @@ +PATH=/usr/qt/tinyq/bin +ROOTPATH=/usr/qt/tinyq/bin +LDPATH=/usr/qt/tinyq/lib +QTDIR=/usr/qt/tinyq +QMAKESPEC=linux-g++ diff --git a/dev-libs/tinyq/files/digest-tinyq-3.0.4 b/dev-libs/tinyq/files/digest-tinyq-3.0.4 new file mode 100644 index 000000000000..896a31d09508 --- /dev/null +++ b/dev-libs/tinyq/files/digest-tinyq-3.0.4 @@ -0,0 +1 @@ +MD5 556f853b053db2fc47f107ee024dd3d8 tinyq-3.0.4.tar.bz2 756415 diff --git a/dev-libs/tinyq/tinyq-3.0.4.ebuild b/dev-libs/tinyq/tinyq-3.0.4.ebuild new file mode 100644 index 000000000000..5e2ff12eba92 --- /dev/null +++ b/dev-libs/tinyq/tinyq-3.0.4.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Geert Bevin <gbevin@gentoo.org> +# /space/gentoo/cvsroot/gentoo-x86/dev-libs/tinyqt/tinyqt-3.0.3.ebuild,v 1.3 2002/04/27 10:31:46 seemant Exp + +DESCRIPTION="Stripped down version of qt ${PV} for console development" +SLOT="3" +S=${WORKDIR}/${P} +SRC_URI="mirror://sourceforge/tinyqt/tinyq-${PV}.tar.bz2" +HOMEPAGE="http://www.uwyn.com/projects/tinyq" + +DEPEND="virtual/glibc + >=sys-devel/gcc-2.95.3-r5 + >=dev-util/yacc-1.9.1-r1 + >=sys-devel/flex-2.5.4a-r4" + +QTBASE=/usr/qt/tinyq +export QTDIR=${S} + +src_compile() { + + ./configure -release -no-g++-exceptions -prefix /usr/qt/tinyq || die + emake || die +} + +src_install() { + + make INSTALL_ROOT=${D} install || die + insinto /etc/env.d + doins ${FILESDIR}/47tinyq + +} |