summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-04-22 11:22:18 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-04-22 12:41:21 +0200
commitbf9262172f711ad0c4929a1e7940e696039ea91a (patch)
treeb1d74f9789a2dd552729e80ee5b35b9547d4ad10
parentx11-misc/fraqtive: EAPI-7 bump, add missing DEPENDs (diff)
downloadgentoo-bf9262172f711ad0c4929a1e7940e696039ea91a.tar.gz
gentoo-bf9262172f711ad0c4929a1e7940e696039ea91a.tar.bz2
gentoo-bf9262172f711ad0c4929a1e7940e696039ea91a.zip
x11-misc/fraqtive: Drop 0.4.8 (r0)
Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--x11-misc/fraqtive/fraqtive-0.4.8.ebuild62
1 files changed, 0 insertions, 62 deletions
diff --git a/x11-misc/fraqtive/fraqtive-0.4.8.ebuild b/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
deleted file mode 100644
index a97d45c95d52..000000000000
--- a/x11-misc/fraqtive/fraqtive-0.4.8.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils gnome2-utils qmake-utils toolchain-funcs
-
-DESCRIPTION="an open source, multi-platform generator of the Mandelbrot family fractals"
-HOMEPAGE="https://fraqtive.mimec.org/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="cpu_flags_x86_sse2"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtopengl:5
- virtual/glu
-"
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-src_configure() {
- epatch "${FILESDIR}/${P}-qt-includes.patch"
-
- tc-export PKG_CONFIG
- sed -i -e "s|-lGLU|$( ${PKG_CONFIG} --libs glu )|g" src/src.pro || die
- local conf="release"
-
- if use cpu_flags_x86_sse2; then
- conf="$conf sse2"
- else
- conf="$conf no-sse2"
- fi
-
- echo "CONFIG += $conf" > "${S}"/config.pri
- echo "PREFIX = ${EPREFIX}/usr" >> "${S}"/config.pri
- # Don't strip wrt #252096
- echo "QMAKE_STRIP =" >> "${S}"/config.pri
-
- eqmake5
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-}
-
-pkg_preinst() {
- gnome2_icon_savelist
-}
-
-pkg_postinst() {
- gnome2_icon_cache_update
-}
-
-pkg_postrm() {
- gnome2_icon_cache_update
-}