blob: c07ab32f95f68104ae68fdcdaf74f1f4e2abb7b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Manipulate and process PDB files using tools such as Perl, awk, etc"
HOMEPAGE="https://www.ks.uiuc.edu/Development/MDTools/pdbcat/"
SRC_URI="https://www.ks.uiuc.edu/Development/MDTools/${PN}/files/${P}.tar.gz"
LICENSE="free-noncomm"
SLOT="0"
KEYWORDS="~amd64 ~x86"
BDEPEND=">=dev-build/cmake-3.31"
DOCS=( README )
PATCHES=( "${FILESDIR}"/${P}-gcc.patch )
src_prepare() {
cp "${FILESDIR}"/CMakeLists.txt . || die
cmake_src_prepare
}
|