diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-12-27 21:24:47 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-12-27 21:24:47 +0000 |
commit | 4afba4d550b33abbdaedd9eb8cf1e296d5a8a806 (patch) | |
tree | 6d7f8532a0693011086cac206408b06dd958f9c6 /sci-misc/qcad/qcad-2.0.4.0-r1.ebuild | |
parent | Moving to sci-misc/qcad (diff) | |
download | gentoo-2-4afba4d550b33abbdaedd9eb8cf1e296d5a8a806.tar.gz gentoo-2-4afba4d550b33abbdaedd9eb8cf1e296d5a8a806.tar.bz2 gentoo-2-4afba4d550b33abbdaedd9eb8cf1e296d5a8a806.zip |
Moved from app-sci/qcad to sci-misc/qcad.
Diffstat (limited to 'sci-misc/qcad/qcad-2.0.4.0-r1.ebuild')
-rw-r--r-- | sci-misc/qcad/qcad-2.0.4.0-r1.ebuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/sci-misc/qcad/qcad-2.0.4.0-r1.ebuild b/sci-misc/qcad/qcad-2.0.4.0-r1.ebuild new file mode 100644 index 000000000000..5292a304a929 --- /dev/null +++ b/sci-misc/qcad/qcad-2.0.4.0-r1.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-misc/qcad/qcad-2.0.4.0-r1.ebuild,v 1.1 2004/12/27 21:24:47 ribosome Exp $ + +inherit kde-functions eutils + +MY_PV=${PV}-1 +MY_P=${P}-1.src +S=${WORKDIR}/${MY_P} +DESCRIPTION="A 2D CAD package based upon Qt." +SRC_URI="http://www.ribbonsoft.com/archives/qcad/${MY_P}.tar.gz + doc? ( mirror://gentoo/qcad-manual-200404.tar.bz2 )" +# mirror://gentoo/qcaddoc-${MY_PV}.tar.bz2" +HOMEPAGE="http://www.ribbonsoft.com/qcad.html" + +LICENSE="GPL-2" +SLOT="0" +IUSE="doc" +KEYWORDS="~x86 ~ppc ~amd64" + +need-qt 3.3 + +DEPEND="${DEPEND} + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} +# mv doc ${S}/qcad/ + cd ${S} + echo >> defs.pro "DEFINES += _REENTRANT QT_THREAD_SUPPORT" + echo >> defs.pro "CONFIG += thread release" + echo >> defs.pro "QMAKE_CFLAGS_RELEASE += ${CFLAGS}" + echo >> defs.pro "QMAKE_CXXFLAGS_RELEASE += ${CXXFLAGS}" + epatch ${FILESDIR}/${MY_P}-gentoo.patch + epatch ${FILESDIR}/manual.patch-r1 + cd ${S}/scripts + sed -i -e 's/^make/make ${MAKEOPTS}/' build_qcad.sh || \ + die "unable to add MAKEOPTS" + sed -i -e 's/^\.\/configure/.\/configure --host=${CHOST}/' build_qcad.sh \ + || die "unable to set CHOST" + cd ${S}/qcad/src + sed -i -e "s:FULLASSISTANTPATH:${QTDIR}/bin:" qc_applicationwindow.cpp \ + || die "sed failed on assistant path" + sed -i -e "s:QCADDOCPATH:/usr/share/doc/${PF}:" \ + qc_applicationwindow.cpp || die "sed failed on manual path" + +} + + +src_compile() { + ### borrowed from kde.eclass # + # + # fix the sandbox errors "can't writ to .kde or .qt" problems. + # this is a fake homedir that is writeable under the sandbox, so that the build process + # can do anything it wants with it. + REALHOME="$HOME" + mkdir -p $T/fakehome/.kde + mkdir -p $T/fakehome/.qt + export HOME="$T/fakehome" + # things that should access the real homedir + [ -d "$REALHOME/.ccache" ] && ln -sf "$REALHOME/.ccache" "$HOME/" + cd scripts + sh build_qcad.sh || die "build failed" + if ! test -f ${S}/qcad/qcad; then + die "no binary created, build failed" + fi +} + +src_install () { + cd qcad + mv qcad qcad.bin + dobin qcad.bin + echo -e "#!/bin/sh\ncd /usr/share/${P}\nqcad.bin" > qcad + chmod ugo+rx qcad + dobin qcad + dodir /usr/share/${P} + cp -a patterns examples fonts qm ${D}/usr/share/${P} + cd .. + dodoc README + if use doc; then + insinto /usr/share/doc/${PF}/ + cd ${WORKDIR} + cp -a qcaddoc.adp cad ${D}usr/share/doc/${PF} + fi +} |