blob: 9a7682872117d69ddd66bcb0f23bf80d8d7cb379 (
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
37
38
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/qsoapman/qsoapman-0.3.ebuild,v 1.7 2005/07/25 15:43:52 caleb Exp $
inherit qt3
IUSE=""
DESCRIPTION="Qt SOAP Manager is a GUI tool for sending SOAP messages."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://qsoapman.sourceforge.net/"
SLOT="0"
KEYWORDS="x86 ppc"
LICENSE="GPL-2"
RESTRICT="nomirror"
DEPEND="$(qt_min_version 3.1)"
RDEPEND="${DEPEND}"
src_compile() {
${QTDIR}/bin/qmake -o Makefile qsoapman.pro
sed -i -e "s/CFLAGS = -pipe -Wall -W -O2/CFLAGS = ${CFLAGS} -Wall -W/" src/Makefile
sed -i -e "s/CXXFLAGS = -pipe -Wall -W -O2/CXXFLAGS = ${CXXFLAGS} -Wall -W/" src/Makefile
addpredict ${QTDIR}/etc/settings
emake || die "make failed"
emake install || die "make install failed"
}
src_install () {
insinto /usr/share/${PN}
doins *.xml
dobin bin/qsoapman
dodoc AUTHORS BUGS ChangeLog COPYING TODO
}
|