diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-03-06 09:21:36 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-03-07 10:10:58 +0100 |
commit | 3599aa7778d4fbf428449f8859f506734c15c419 (patch) | |
tree | cadbb474d92ff4f56f8562a1676bce61b325267f /x11-misc/fraqtive | |
parent | x11-misc/fireflies: Remove old (diff) | |
download | gentoo-3599aa7778d4fbf428449f8859f506734c15c419.tar.gz gentoo-3599aa7778d4fbf428449f8859f506734c15c419.tar.bz2 gentoo-3599aa7778d4fbf428449f8859f506734c15c419.zip |
x11-misc/fraqtive: Remove old
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4142
Diffstat (limited to 'x11-misc/fraqtive')
-rw-r--r-- | x11-misc/fraqtive/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/fraqtive/fraqtive-0.4.7.ebuild | 71 |
2 files changed, 0 insertions, 72 deletions
diff --git a/x11-misc/fraqtive/Manifest b/x11-misc/fraqtive/Manifest index fd495f688ec3..88cd0d5b9db7 100644 --- a/x11-misc/fraqtive/Manifest +++ b/x11-misc/fraqtive/Manifest @@ -1,2 +1 @@ -DIST fraqtive-0.4.7.tar.bz2 259933 SHA256 f280ada46b1d91859747e7ba6d53aee3ffbb5c3cba803a0b6ffbc155d9e70d72 SHA512 7298be12b67f87f1a0249ea76319360af1477053cb1def67541f362f4e0bd72ee1c13ad1d98cbf4e155f4a1c8509b2553c39e5f4a585b91b53da2b64160d1f0c WHIRLPOOL 251cb00314abb12b053e4b752ba3647305b1609c530ff79d53f711cc4397459d7bdb720ca32f0e6608018c56d059a6a43e9f02b636aab8088f6dc7ed027f9d0b DIST fraqtive-0.4.8.tar.bz2 260484 SHA256 dbb21b5e6305cbf02c27aaedb12c5125ac873600bce10d12e88b2305a2083cd7 SHA512 8b4be81dd14fe086dbcffda123395ccb30a197e7762e590bc3ab7dc1d0aafb44dc45e1445e2f83198a0c1f4b9ea0d54a7de1989c3b85c0f2e5f474a67255d942 WHIRLPOOL 29bfc8574d63ac6e77c36531e1dd9aa63810af12e6669f8248c364f6dd42088ac1418cdce6c1b760dc922bbded65b148e0079f8c56df69e27f42b093212ee7c3 diff --git a/x11-misc/fraqtive/fraqtive-0.4.7.ebuild b/x11-misc/fraqtive/fraqtive-0.4.7.ebuild deleted file mode 100644 index 8d3effac98fe..000000000000 --- a/x11-misc/fraqtive/fraqtive-0.4.7.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2015 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="http://fraqtive.mimec.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="qt5 cpu_flags_x86_sse2" - -RDEPEND=" - !qt5? ( - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtopengl:4 - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtopengl:5 - ) - virtual/glu -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_configure() { - 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 - - if use qt5; then - eqmake5 - else - eqmake4 - fi -} - -src_install() { - emake INSTALL_ROOT="${D}" install -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |