diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-02-17 07:36:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-02-17 07:36:52 +0000 |
commit | f09798eed5c96880531395efcfcf551dfbce3bc4 (patch) | |
tree | 47f17c93aabdf8e04a4531f6f922f80250513560 /dev-libs | |
parent | bump, I'm dumb (diff) | |
download | historical-f09798eed5c96880531395efcfcf551dfbce3bc4.tar.gz historical-f09798eed5c96880531395efcfcf551dfbce3bc4.tar.bz2 historical-f09798eed5c96880531395efcfcf551dfbce3bc4.zip |
version bump
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/tinyq/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/tinyq/files/digest-tinyq-3.0.6 | 1 | ||||
-rw-r--r-- | dev-libs/tinyq/tinyq-3.0.6.ebuild | 31 |
3 files changed, 37 insertions, 2 deletions
diff --git a/dev-libs/tinyq/ChangeLog b/dev-libs/tinyq/ChangeLog index 063f521481bf..b44b3377dd85 100644 --- a/dev-libs/tinyq/ChangeLog +++ b/dev-libs/tinyq/ChangeLog @@ -2,8 +2,11 @@ # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 # /space/gentoo/cvsroot/gentoo-x86/dev-libs/tinyqt/ChangeLog,v 1.1 2002/03/26 10:52:11 gbevin Exp - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - +*tinyq-3.0.6 (17 Feb 2003) + + 17 Feb 2003; Mike Frysinger <vapier@gentoo.org> : + Version bump. + *tinyq-3.0.5 (16 Jul 2002) 16 Jul 2002; FA.Meyndert <m0rpheus@gentoo.org> : tinyq-3.0.5.ebuild, diff --git a/dev-libs/tinyq/files/digest-tinyq-3.0.6 b/dev-libs/tinyq/files/digest-tinyq-3.0.6 new file mode 100644 index 000000000000..6a3511b23426 --- /dev/null +++ b/dev-libs/tinyq/files/digest-tinyq-3.0.6 @@ -0,0 +1 @@ +MD5 323f39a4fae6cd3391af8a52e7a58c01 tinyq-3.0.6.tar.bz2 776474 diff --git a/dev-libs/tinyq/tinyq-3.0.6.ebuild b/dev-libs/tinyq/tinyq-3.0.6.ebuild new file mode 100644 index 000000000000..53b5500d54ed --- /dev/null +++ b/dev-libs/tinyq/tinyq-3.0.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/tinyq/tinyq-3.0.6.ebuild,v 1.1 2003/02/17 07:36:52 vapier Exp $ + +DESCRIPTION="Stripped down version of qt ${PV} for console development" +SRC_URI="http://freesoftware.fsf.org/download/tinyq/${P}.tar.bz2" +HOMEPAGE="http://www.uwyn.com/projects/tinyq/" + +SLOT="3" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc" + +DEPEND=">=dev-util/yacc-1.9.1-r1 + >=sys-devel/flex-2.5.4a-r4" + +S=${WORKDIR}/${P} +export QTDIR=${S} + +src_compile() { + QTBASE=/usr/qt/tinyq + QMAKESPEC=linux-g++ + + ./configure -release -no-g++-exceptions -thread -prefix /usr/qt/tinyq || die + emake || die +} + +src_install() { + make INSTALL_ROOT=${D} install || die + insinto /etc/env.d + doins ${FILESDIR}/47tinyq +} |