dev-perl/OpenGL: drop 0.700.0-r1

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James 2025-06-10 12:30:59 +01:00
parent 0fdda4a46d
commit 9c5610df7c
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 54 deletions

View File

@ -1,2 +1 @@
DIST OpenGL-0.70.tar.gz 783810 BLAKE2B 9112057cb0eed654827aaed84646c31d80833f6cce90a7a6066d648558c90ade0126b4f79033bef08adce1e3024c2eb4d1e6b10d4807bb422bce18ffcb1baba9 SHA512 7d418015b2553dd69805252b5957bc97013260617d5a358f692e29b8da884590421c81fbc71d4dd678c93a5c89047d6af8c32f15bf0bd0e4ce514c200e634af5
DIST OpenGL-0.7002.tar.gz 792095 BLAKE2B 3df5bbfa746dde0bd3a4488872670b09d6fae3ec0bc0dd680ba239405741ebd4da6136af6335f3c79e4e88d572f6c98bb4c2739c7274f66559e126df1e7869d5 SHA512 41f1ca91dc7a92e173e3fab67f9d0a94205b17de94f6662d7588e46b8bdfac1b016ab237a045ff50eb7d46d1f342f253f8afb7254f4b7b14feca24b0acc293ba

View File

@ -1,53 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DIST_AUTHOR=CHM
DIST_VERSION=0.70
inherit perl-module
DESCRIPTION="Perl interface providing graphics display using OpenGL"
SLOT="0"
KEYWORDS="amd64 arm ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
IUSE="examples"
RDEPEND="
media-libs/freeglut:0=
x11-libs/libICE:0=
x11-libs/libXext:0=
x11-libs/libXi:0=
x11-libs/libXmu:0=
"
DEPEND="${RDEPEND}
"
BDEPEND="${RDEPEND}
"
mydoc="Release_Notes"
src_prepare() {
eapply "${FILESDIR}"/${P}-no-display.patch
# This should be merely moved to t/ as it gets
# installed to OS otherwise.
# But it presently fails tests, and can't be made not to.
# ( And will need virtualx when it can )
# Something to do with OpenGL implementation ala eselect.
perl_rm_files "test.pl";
perl-module_src_prepare
}
src_compile() {
sed -i -e 's/PERL_DL_NONLAZY=1//' Makefile || die
perl-module_src_compile
}
src_install() {
perl-module_src_install
if use examples; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}