summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-05-19 08:12:05 +0000
committerJohannes Huber <johu@gentoo.org>2012-05-19 08:12:05 +0000
commit2c5aad17aa714bed2fa8e724475c34b91324bce6 (patch)
treed31a9bb45afbc3301326588a751b1b359c95b163 /x11-libs/qwtplot3d
parentskalibs bundle gone from repo (diff)
downloadgentoo-2-2c5aad17aa714bed2fa8e724475c34b91324bce6.tar.gz
gentoo-2-2c5aad17aa714bed2fa8e724475c34b91324bce6.tar.bz2
gentoo-2-2c5aad17aa714bed2fa8e724475c34b91324bce6.zip
Remove old wrt bug #311481.
(Portage version: 2.2.0_alpha105/cvs/Linux i686)
Diffstat (limited to 'x11-libs/qwtplot3d')
-rw-r--r--x11-libs/qwtplot3d/ChangeLog5
-rw-r--r--x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild62
2 files changed, 4 insertions, 63 deletions
diff --git a/x11-libs/qwtplot3d/ChangeLog b/x11-libs/qwtplot3d/ChangeLog
index 85b6a052651e..cb820d607945 100644
--- a/x11-libs/qwtplot3d/ChangeLog
+++ b/x11-libs/qwtplot3d/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for x11-libs/qwtplot3d
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.25 2012/05/19 08:02:43 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.26 2012/05/19 08:12:05 johu Exp $
+
+ 19 May 2012; Johannes Huber <johu@gentoo.org> -qwtplot3d-0.2.7-r1.ebuild:
+ Remove old wrt bug #311481.
19 May 2012; Agostino Sarubbo <ago@gentoo.org> qwtplot3d-0.2.7-r2.ebuild:
Stable for x86, wrt bug #411873
diff --git a/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild b/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild
deleted file mode 100644
index 9e751fdfa7a6..000000000000
--- a/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild,v 1.6 2010/02/20 17:29:40 armin76 Exp $
-
-EAPI=2
-inherit eutils qt4
-
-DESCRIPTION="Qt4/OpenGL-based 3D widget library for C++"
-HOMEPAGE="http://qwtplot3d.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="ZLIB"
-SLOT="0"
-IUSE="doc examples"
-KEYWORDS="~alpha amd64 ~ppc ~ppc64 x86"
-
-RDEPEND="x11-libs/qt-gui:4
- x11-libs/qt-opengl:4
- x11-libs/gl2ps"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-profile.patch
- epatch "${FILESDIR}"/${PN}-examples.patch
- epatch "${FILESDIR}"/${PN}-doxygen.patch
- epatch "${FILESDIR}"/${PN}-sys-gl2ps.patch
- epatch "${FILESDIR}"/${PN}-gcc44.patch
- cat >> ${PN}.pro <<-EOF
- target.path = /usr/$(get_libdir)
- headers.path = /usr/include/${PN}
- headers.files = \$\$HEADERS
- INSTALLS = target headers
- EOF
- qt4_src_prepare
-}
-
-src_configure() {
- eqmake4
-}
-
-src_compile() {
- emake || die "emake failed"
- if use doc ; then
- cd doc
- doxygen Doxyfile.doxygen || die "doxygen failed"
- fi
-}
-
-src_install () {
- emake INSTALL_ROOT="${D}" install || die "emake install failed"
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r examples || die "doins examples failed"
- fi
- if use doc; then
- insinto /usr/share/doc/${PF}/html
- doins -r doc/web/doxygen/* || die
- fi
-}