From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6D23915800A for ; Tue, 22 Aug 2023 01:13:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 829A32BC013; Tue, 22 Aug 2023 01:13:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6217F2BC013 for ; Tue, 22 Aug 2023 01:13:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 615F3341254 for ; Tue, 22 Aug 2023 01:13:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AB7CF86 for ; Tue, 22 Aug 2023 01:13:45 +0000 (UTC) From: "Seth Price" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Seth Price" Message-ID: <1692666809.79cb9cbb17f87d4d40387e5c2f163f5dbb8d624d.sprice623@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-action/classicube/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-action/classicube/classicube-9999.ebuild X-VCS-Directories: games-action/classicube/ X-VCS-Committer: sprice623 X-VCS-Committer-Name: Seth Price X-VCS-Revision: 79cb9cbb17f87d4d40387e5c2f163f5dbb8d624d X-VCS-Branch: dev Date: Tue, 22 Aug 2023 01:13:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 80f7376a-0ffa-4017-a2fc-0aa6aaaf027e X-Archives-Hash: 6cd3de17a6afbdabf3248091a258d20e commit: 79cb9cbb17f87d4d40387e5c2f163f5dbb8d624d Author: Seth Price aol com> AuthorDate: Tue Aug 22 01:13:29 2023 +0000 Commit: Seth Price aol com> CommitDate: Tue Aug 22 01:13:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=79cb9cbb games-action/classicube: add 9999 Signed-off-by: Seth Price aol.com> games-action/classicube/classicube-9999.ebuild | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/games-action/classicube/classicube-9999.ebuild b/games-action/classicube/classicube-9999.ebuild new file mode 100644 index 0000000000..71ea6881c3 --- /dev/null +++ b/games-action/classicube/classicube-9999.ebuild @@ -0,0 +1,28 @@ +# Copyright 2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit git-r3 toolchain-funcs + +DESCRIPTION="Reverse-engineered Minecraft Classic client" +HOMEPAGE="https://www.classicube.net/" +EGIT_REPO_URI="https://github.com/UnknownShadow200/ClassiCube.git" + +LICENSE="BSD MIT FTL" +SLOT="0" + +DEPEND="x11-libs/libX11 x11-libs/libXi virtual/opengl" +RDEPEND="${DEPEND}" + +src_compile() { + $(tc-getCC) ${CFLAGS} ${LDFLAGS} src/*.c -o ClassiCube -rdynamic -lm -lpthread -lX11 -lXi -lGL -ldl || die +} + +src_install() { + exeinto "/usr/libexec" + doexe ClassiCube + dobin "${FILESDIR}/ClassiCube" + dodoc readme.md + dodoc doc/*.md +}