diff options
author | 2002-12-06 06:41:52 +0000 | |
---|---|---|
committer | 2002-12-06 06:41:52 +0000 | |
commit | 6eaf90df9590463e0c4bb370e75106477a4890d2 (patch) | |
tree | d5aaffe7f90b905ce621d161eed2b56ea844de95 /app-sci | |
parent | new setup for virtuals/krb5 (diff) | |
download | gentoo-2-6eaf90df9590463e0c4bb370e75106477a4890d2.tar.gz gentoo-2-6eaf90df9590463e0c4bb370e75106477a4890d2.tar.bz2 gentoo-2-6eaf90df9590463e0c4bb370e75106477a4890d2.zip |
new package: Visual Signal Transition Graph Lab
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/vstgl/ChangeLog | 11 | ||||
-rw-r--r-- | app-sci/vstgl/vstgl-0.6.1.ebuild | 41 |
2 files changed, 52 insertions, 0 deletions
diff --git a/app-sci/vstgl/ChangeLog b/app-sci/vstgl/ChangeLog new file mode 100644 index 000000000000..4733ce276f10 --- /dev/null +++ b/app-sci/vstgl/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-sci/vstgl +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-sci/vstgl/ChangeLog,v 1.1 2002/12/06 06:41:52 george Exp $ + +*vstgl-0.6.1 (05 Dec Oct 2002) + + 05 Dec 2002; George Shapovalov <georges@its.caltech.edu> vstgl-0.6.1.ebuild : + + initial release. + Visual Signal Transition Graph Lab + ebuild submitted by Chris Bainbridge <chrb@dcs.ed.ac.uk> diff --git a/app-sci/vstgl/vstgl-0.6.1.ebuild b/app-sci/vstgl/vstgl-0.6.1.ebuild new file mode 100644 index 000000000000..b217ca321bcd --- /dev/null +++ b/app-sci/vstgl/vstgl-0.6.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/vstgl/vstgl-0.6.1.ebuild,v 1.1 2002/12/06 06:41:52 george Exp $ + +IUSE="" + +DESCRIPTION="Visual Signal Transition Graph Lab" +HOMEPAGE="http://vstgl.sourceforge.net/" +SRC_URI="http://vstgl.sourceforge.net/vstgl-0.6.1.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" + +DEPEND="x11-libs/qt + media-libs/libpng + sys-libs/zlib" + # dev-util/kdoc" + +src_unpack() { + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/${P}-qt3-gcc32.patch + rm -rf CVS */CVS */*/CVS */*/*/CVS; +} + +src_compile() { + emake +} + +src_install () { + newbin vstgl-linux-0.6.1 vstgl + dodoc README AUTHORS COPYING + dodir /usr/share/doc/${P}/ + cp -a examples ${D}/usr/share/doc/${P}/ + cp -a Help ${D}/usr/share/doc/${P} +} + + + + |