From 7a305a4f3ed85dc7089fc828bd35807c954d84b1 Mon Sep 17 00:00:00 2001 From: Andrew Ammerlaan Date: Fri, 15 Jan 2021 17:17:59 +0100 Subject: x110libs/tr: remove pack, upstream has dissapeared package and author page removed from mesa3d.org there is still this https://www.ssec.wisc.edu/~billh/bp/TR.html but the download is 404. Signed-off-by: Andrew Ammerlaan --- profiles/package.mask | 1 - x11-libs/tr/Manifest | 1 - x11-libs/tr/files/1.3-Makefile.patch | 29 ----------------------------- x11-libs/tr/metadata.xml | 8 -------- x11-libs/tr/tr-1.3.ebuild | 33 --------------------------------- 5 files changed, 72 deletions(-) delete mode 100644 x11-libs/tr/Manifest delete mode 100644 x11-libs/tr/files/1.3-Makefile.patch delete mode 100644 x11-libs/tr/metadata.xml delete mode 100644 x11-libs/tr/tr-1.3.ebuild diff --git a/profiles/package.mask b/profiles/package.mask index 8618f1cc9..8e448b584 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -147,4 +147,3 @@ sci-mathematics/pff sci-misc/kotus-sanalista sci-physics/fullprof-bin sci-physics/openmx -x11-libs/tr diff --git a/x11-libs/tr/Manifest b/x11-libs/tr/Manifest deleted file mode 100644 index ea572644d..000000000 --- a/x11-libs/tr/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tr-1.3.tar.gz 23598 BLAKE2B 4cb3a33d6fbc0cdc2292b78c8e20aee75361a9135970efbde26a2c08fafa95f260b8c0bb2906c82df4b8acb373a140587cf59e9eb19c1341e1e46bb491432fdb SHA512 530a6a4885340cb2efee181bfa52598c93a4cdbfbd197e2c854265175758beb5a27c68dd5a23c2e14fdeded2a2f8b5079b0478a18cbdbfdd854280ab4d6e26c1 diff --git a/x11-libs/tr/files/1.3-Makefile.patch b/x11-libs/tr/files/1.3-Makefile.patch deleted file mode 100644 index 6f3a2afe8..000000000 --- a/x11-libs/tr/files/1.3-Makefile.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- a/Makefile 2005-08-25 22:18:31.000000000 +0200 -+++ b/Makefile 2009-03-21 15:11:55.000000000 +0100 -@@ -4,8 +4,8 @@ - # You'll probably have to tweak this for your platform. - - --CC = cc --CFLAGS = -c -g -ansi -I/usr/local/include -+CC ?= gcc -+CFLAGS += -c -ansi -I/usr/include - LIBS = -L/usr/X11R6/lib -lglut -lGLU -lGL -lX11 -lXmu -lXext -lm - - -@@ -19,13 +19,13 @@ - $(CC) $(CFLAGS) tr.c - - trdemo1: trdemo1.o tr.o -- $(CC) trdemo1.o tr.o $(LIBS) -o $@ -+ $(CC) $(LDFLAGS) trdemo1.o tr.o $(LIBS) -o $@ - - trdemo1.o: trdemo1.c tr.h - $(CC) $(CFLAGS) trdemo1.c - - trdemo2: trdemo2.o tr.o -- $(CC) trdemo2.o tr.o $(LIBS) -o $@ -+ $(CC) $(LDFLAGS) trdemo2.o tr.o $(LIBS) -o $@ - - trdemo2.o: trdemo2.c tr.h - $(CC) $(CFLAGS) trdemo2.c diff --git a/x11-libs/tr/metadata.xml b/x11-libs/tr/metadata.xml deleted file mode 100644 index ae9640ffb..000000000 --- a/x11-libs/tr/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - sci@gentoo.org - Gentoo Science Project - - diff --git a/x11-libs/tr/tr-1.3.ebuild b/x11-libs/tr/tr-1.3.ebuild deleted file mode 100644 index 105e296bc..000000000 --- a/x11-libs/tr/tr-1.3.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils toolchain-funcs - -DESCRIPTION="An OpenGL utility library for doing tiled rendering" -HOMEPAGE="http://www.mesa3d.org/brianp/TR.html" -SRC_URI="http://www.mesa3d.org/brianp/tr-1.3.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="media-libs/freeglut" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${PV}-Makefile.patch ) - -src_prepare() { - default - tc-export CC -} - -src_install() { - doheader tr.h - dobin trdemo{1,2} - dodoc README - docinto html - dodoc tr.htm -} -- cgit v1.2.3-65-gdbad