diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-05-05 12:49:20 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-05-05 14:03:19 +0200 |
commit | 111cae1b75a5718df053b312666fccee77db6170 (patch) | |
tree | 4f4c7ed7de11d627d9a76fb525b1bf9d482af00f /app-misc | |
parent | app-text/pandoc-bin: drop old 3.1 (diff) | |
download | gentoo-111cae1b75a5718df053b312666fccee77db6170.tar.gz gentoo-111cae1b75a5718df053b312666fccee77db6170.tar.bz2 gentoo-111cae1b75a5718df053b312666fccee77db6170.zip |
app-misc/golly: drop old 4.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/golly/Manifest | 1 | ||||
-rw-r--r-- | app-misc/golly/golly-4.0.ebuild | 72 |
2 files changed, 0 insertions, 73 deletions
diff --git a/app-misc/golly/Manifest b/app-misc/golly/Manifest index 8534b248b213..6bf37af5d5cc 100644 --- a/app-misc/golly/Manifest +++ b/app-misc/golly/Manifest @@ -1,3 +1,2 @@ -DIST golly-4.0-src.tar.gz 5579026 BLAKE2B fc6c9d4db80e92635ac466250ca65c5cbe496c668f2fbd583226a2ecd686ac022aa4d47f453628284bceeb16554b91340b442216eab8412506243e30085a3a32 SHA512 3a39e170ceddfa4f8c261a81f7b45039e9cc2aef901915d83d3227231514bf66e254d307802cb0afddd7458722b8cbf2ce527cb9ee84a2710b52bf5bdb15484d DIST golly-4.1-src.tar.gz 14877727 BLAKE2B d9cac1250901a39d6a360b527c6f4872fc78d0426ea255b9f9129136b938a6655ff59f8c5b0204fd44f4ac0ae76e307c763ddb24a1d8a00bd4e548e4ac2277c3 SHA512 bc050a216a36091f0df42e61a19c34353c6306dc1ae86c194693c85a4489b118435da238b25017bde4b3d31a79e12a6988f7b7da5ae90cfcc9ca0795e66d4a99 DIST golly-4.2-src.tar.gz 15348982 BLAKE2B 21ebed4c282a77a3f61aafa98936c0bb39b39a7c97505e96fc43ac720bd2eea4cf20996ca28c801f79a46577a0cf99ff60614ce134081605d14ca5972c841d50 SHA512 b9f5cfdfe9b96590411695805dd8b875329c81027fef98dff3f16b832018be2ad3a06583bb64e12fb305268feba2347ef63c4586ff0e645721a8085f04ab382a diff --git a/app-misc/golly/golly-4.0.ebuild b/app-misc/golly/golly-4.0.ebuild deleted file mode 100644 index 7737a0ebc8e2..000000000000 --- a/app-misc/golly/golly-4.0.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -WX_GTK_VER=3.0-gtk3 -PYTHON_COMPAT=( python3_{9,10} ) - -inherit desktop python-single-r1 toolchain-funcs wxwidgets xdg-utils - -DESCRIPTION="simulator for Conway's Game of Life and other cellular automata" -HOMEPAGE="http://golly.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}-src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -DEPEND="virtual/opengl - sys-libs/zlib - x11-libs/wxGTK:${WX_GTK_VER}[X,opengl,tiff] - ${PYTHON_DEPS} -" - -RDEPEND="${DEPEND}" - -S=${WORKDIR}/${P}-src - -PATCHES=( - "${FILESDIR}"/${PN}-4.0-CFLAGS.patch -) - -pkg_setup() { - python-single-r1_pkg_setup - setup-wxwidgets -} - -src_compile() { - emake -C gui-wx -f makefile-gtk \ - \ - CC="$(tc-getCC)" \ - CXX="$(tc-getCXX)" \ - CXXC="$(tc-getCXX)" \ - \ - AR="$(tc-getAR)" \ - RANLIB="$(tc-getRANLIB)" \ - \ - PYTHON=${EPYTHON} \ - WX_CONFIG=${WX_CONFIG} \ - \ - GOLLYDIR="${EPREFIX}/usr/share/${PN}" -} - -src_install() { - # has no 'make install' Let's install files manually. - dobin golly bgolly - insinto /usr/share/${PN} - doins -r Help Patterns Scripts Rules docs - - newicon --size 32 gui-wx/icons/appicon.xpm ${PN}.xpm - make_desktop_entry ${PN} "Golly" ${PN} "Science" -} - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} |