blob: a05143405f1d6de68c903b1f0e8272c1b92ce2f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/vstgl/vstgl-0.6.2.ebuild,v 1.5 2006/12/27 14:56:32 peper Exp $
inherit eutils qt3
IUSE=""
DESCRIPTION="Visual Signal Transition Graph Lab"
HOMEPAGE="http://vstgl.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
DEPEND="$(qt_min_version 3.3.4)
media-libs/libpng
sys-libs/zlib
sci-electronics/petrify"
S="${WORKDIR}/${PN}"
src_unpack()
{
unpack ${A}
cd "${S}"
sed -e "s:^qmake:${QTDIR}\/bin\/qmake:" -i configure
}
src_install () {
einstall INSTALL_ROOT=${D} || die
dodoc README
dodir /usr/share/doc/${P}/
cp -pPR examples ${D}/usr/share/doc/${P}/
}
|