diff options
author | Paul Healy <lmiphay@gmail.com> | 2024-08-08 21:56:01 +0100 |
---|---|---|
committer | Paul Healy <lmiphay@gmail.com> | 2024-08-08 21:56:01 +0100 |
commit | a4600457e2a6cb8956cb6d0e151ef7cc879f9182 (patch) | |
tree | 1c6d23fab90a672dc39c90d509621d55999d463f | |
parent | add latest fs alpha (diff) | |
download | lmiphay-a4600457e2a6cb8956cb6d0e151ef7cc879f9182.tar.gz lmiphay-a4600457e2a6cb8956cb6d0e151ef7cc879f9182.tar.bz2 lmiphay-a4600457e2a6cb8956cb6d0e151ef7cc879f9182.zip |
remove old fs alpha
Signed-off-by: Paul Healy <lmiphay@gmail.com>
-rw-r--r-- | games-simulation/firestorm-alpha-bin/firestorm-alpha-bin-7.1.9.ebuild | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/games-simulation/firestorm-alpha-bin/firestorm-alpha-bin-7.1.9.ebuild b/games-simulation/firestorm-alpha-bin/firestorm-alpha-bin-7.1.9.ebuild deleted file mode 100644 index ee38014..0000000 --- a/games-simulation/firestorm-alpha-bin/firestorm-alpha-bin-7.1.9.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop font - -REVISION=75657 - -DESCRIPTION="An open source metaverse viewer" -HOMEPAGE="http://www.firestormviewer.org/" - -MY_PV=$(ver_cut 1-3) -MY_PV=${MY_PV//\./-} -MY_P="Phoenix-Firestorm-Alphax64-${MY_PV}-${REVISION}" -SRC_URI=" - https://downloads.firestormviewer.org/test/linux/${MY_P}.tar.xz -" -# https://downloads.firestormviewer.org/test/linux/Phoenix-Firestorm-Alphax64-7-1-9-75657.tar.xz - -RESTRICT="mirror" - -LICENSE="GPL-2-with-Linden-Lab-FLOSS-exception" -SLOT="0" -KEYWORDS="~amd64 -*" -IUSE="" - -INST_DIR="opt/firestorm-alpha-bin" -QA_PREBUILT="${INST_DIR}/*" - -RDEPEND=" - app-crypt/libmd - dev-libs/libbsd - dev-libs/libgcrypt - dev-libs/libgpg-error - dev-libs/openssl - dev-libs/boost - media-fonts/kochi-substitute - media-fonts/unifont - media-libs/freetype - media-libs/gstreamer - media-libs/libogg - media-libs/libvorbis - media-libs/opus - media-plugins/gst-plugins-meta - net-libs/gnutls - net-misc/curl - net-dns/c-ares - sys-apps/dbus - sys-libs/glibc - sys-libs/zlib - virtual/glu - virtual/libcrypt - virtual/opengl - x11-libs/libxcb - x11-libs/libX11 - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXinerama -" -DEPEND="${RDEPEND} - app-admin/chrpath -" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # shouldn't need to null RPATH with chrpath - but scanelf - # reports 'Security problem NULL DT_RPATH' otherwise - chrpath -r '' lib/libffi.so.5.0.10 - scanelf -Xr lib/libffi.so.5.0.10 - chrpath -r '' lib/libalut.so.0.0.0 - scanelf -Xr lib/libalut.so.0.0.0 - chrpath -r '' bin/dullahan_host - scanelf -Xr bin/dullahan_host - - eapply "${FILESDIR}/add-unifonts.patch" - - eapply_user -} - -src_install() { - mkdir -p "${D}/${INST_DIR}/" - - cp -a . "${D}/${INST_DIR}/" || die - - dosym /${INST_DIR}/firestorm /usr/bin/firestorm-alpha-bin - - insinto /etc/revdep-rebuild - doins "${FILESDIR}"/70${PN} - - make_desktop_entry firestorm-alpha-bin "Phoenix Firestorm Viewer ALPHA (bin)" /${INST_DIR}/firestorm_icon.png - - # a hardwired fallback font in LLWindowSDL::getDynamicFallbackFontList - #mkdir -p "${D}/usr/share/fonts/truetype/kochi/" - #dosym /usr/share/fonts/kochi-substitute/kochi-gothic-subst.ttf \ - #/usr/share/fonts/truetype/kochi/kochi-gothic.ttf -} |