diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-01-15 14:28:20 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-01-15 14:28:20 +0000 |
commit | 2ca50c3923aa19d8c6e5f08c45932d9489dfa294 (patch) | |
tree | f53dde253d5e55c5fa3728d3dccb941a20ac1cbb /sci-misc/qcad/qcad-2.0.4.0-r3.ebuild | |
parent | Fixed DEPEND for modular X (bug #118261), removed old version. (diff) | |
download | gentoo-2-2ca50c3923aa19d8c6e5f08c45932d9489dfa294.tar.gz gentoo-2-2ca50c3923aa19d8c6e5f08c45932d9489dfa294.tar.bz2 gentoo-2-2ca50c3923aa19d8c6e5f08c45932d9489dfa294.zip |
Removed run script creation, now using the binary as supplied. Closes bug 110871.
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'sci-misc/qcad/qcad-2.0.4.0-r3.ebuild')
-rw-r--r-- | sci-misc/qcad/qcad-2.0.4.0-r3.ebuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/sci-misc/qcad/qcad-2.0.4.0-r3.ebuild b/sci-misc/qcad/qcad-2.0.4.0-r3.ebuild new file mode 100644 index 000000000000..8a3c1a559bc0 --- /dev/null +++ b/sci-misc/qcad/qcad-2.0.4.0-r3.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2006 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-r3.ebuild,v 1.1 2006/01/15 14:28:20 cryos 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 + http://dev.gentoo.org/~phosphan/qcad-manual-200404.tar.bz2 )" +HOMEPAGE="http://www.ribbonsoft.com/qcad.html" + +LICENSE="GPL-2" +SLOT="0" +IUSE="doc" +KEYWORDS="~x86 ~ppc ~amd64" + +DEPEND=">=sys-apps/sed-4" +need-qt 3.3 + +src_unpack() { + unpack ${A} + # Bug 112864 - fix dir unpack bug + touch ${WORKDIR} + 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}" + for file in */Makefile scripts/build_qcad.sh; do + sed -i -e 's~qmake~${QTDIR}/bin/qmake~g' $file || \ + die "unable to correct path to qmake in $file" + done + 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 + dobin qcad + dodir /usr/share/${P} + cp -pPR patterns examples fonts qm ${D}/usr/share/${P} + cd .. + dodoc README + if use doc; then + insinto /usr/share/doc/${PF}/ + cd ${WORKDIR} + cp -pPR qcaddoc.adp cad ${D}usr/share/doc/${PF} + fi + make_desktop_entry ${PN} ${PN} ${PN} Office +} |