2 次代码提交 5901ccc8b7 ... 887ee8877e

作者 SHA1 备注 提交日期
  Yifeng Li 887ee8877e Initial commit. 1 年之前
  Yifeng Li 5901ccc8b7 Initial commit. 1 年之前
共有 1 个文件被更改,包括 0 次插入36 次删除
  1. 0 36
      sci-libs/gklib/'q

+ 0 - 36
sci-libs/gklib/'q

@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-COMMIT="8bd6bad750b2b0d90800c632cf18e8ee93ad72d7"
-
-DESCRIPTION="Helper routines and frameworks used by KarypisLab software"
-HOMEPAGE="https://github.com/KarypisLab/GKlib"
-SRC_URI="https://github.com/KarypisLab/GKlib/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/GKlib-${COMMIT}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-PATCHES=(
-	"${FILESDIR}/${P}-multilib.patch"
-	"${FILESDIR}/${P}-respect-user-flags.patch"
-)
-
-src_configure() {
-	local mycmakeargs=(
-	)
-
-	if use x86 || use amd64; then
-		# default is okay
-		true
-	else
-		mycmakeargs+="-DNO_X86=1"
-	fi
-
-	cmake_src_configure
-}