diff options
author | Repository mirror & CI <repomirrorci@gentoo.org> | 2023-07-21 08:16:44 +0000 |
---|---|---|
committer | Repository mirror & CI <repomirrorci@gentoo.org> | 2023-07-21 08:16:44 +0000 |
commit | 06fd93954c7ad624a633a261e7c69e09e79e6cb8 (patch) | |
tree | 1a130bc89c453b4d4bd4141daa7779affb28c3cc | |
parent | 2023-07-21 08:08:42 UTC (diff) | |
parent | sci-chemistry/dssp: drop 4.4.0 (diff) | |
download | gentoo-06fd93954c7ad624a633a261e7c69e09e79e6cb8.tar.gz gentoo-06fd93954c7ad624a633a261e7c69e09e79e6cb8.tar.bz2 gentoo-06fd93954c7ad624a633a261e7c69e09e79e6cb8.zip |
Merge updates from master
-rw-r--r-- | sci-chemistry/dssp/Manifest | 2 | ||||
-rw-r--r-- | sci-chemistry/dssp/dssp-4.4.1.ebuild (renamed from sci-chemistry/dssp/dssp-4.4.0.ebuild) | 25 |
2 files changed, 21 insertions, 6 deletions
diff --git a/sci-chemistry/dssp/Manifest b/sci-chemistry/dssp/Manifest index d8219dde5151..efda44191d90 100644 --- a/sci-chemistry/dssp/Manifest +++ b/sci-chemistry/dssp/Manifest @@ -1,4 +1,4 @@ DIST dssp-2.2.1.tgz 47141 BLAKE2B 34d8b2db8797a8c23763766c0214337f03584c4be52c1bc820a0df0db6a5f78ac0229aafdd47a60b8fd6f4832abf0399663c53f9e898c75f08ecbe22b141c8da SHA512 4a273714d6b3230daea166caa7f4117d5ccb225bea0cf1bc2eb61539b6cc8e227d0ba19047d61f0ad0d1d6bc2efdec9c193bd44341e15ef0950acb4a22498811 DIST dssp-3.0.11.tar.gz 168085 BLAKE2B e1c42fd22cfb2287f10b5deae48b56a4583d4a67737a3485dcbd160d1597a15c2d5105c3794c875d8001abede1c014efb4f7f5b7c250f867bdf9ed95a0860217 SHA512 a0cfe44e517ff1f909ef2928b62ae2c639c6bddfd8a0fb538883f647fd2771e00da68e0fd2521aa02ba3c6d1b0c9b784b7fe142392af3a3abf6ea89f1546bd9d DIST dssp-4.3.1.tar.gz 226842 BLAKE2B 86318f05b8381d94fa9c65a956f5fb607ef8072b0395d912e20697ba36836c449ddff31a4a64d0005bbfe34899f71853c0f15a911042389fc894934c08fc34c8 SHA512 4dc1a3f5c7ba258ebf548674c7b33c36b0e3a7d14911394eb8d2955c235f3cb1d6c50cb03f411db55a8a9d7aa93e4d03354c47f9f0126b0bdcbf40dc9391d403 -DIST dssp-4.4.0.tar.gz 161773 BLAKE2B 87673be73f3163ba6fa090cc7acd4f864d41922033da9d126535b84e2da4defaaa8781a8cda6e80103dc75359718cd867b9baf90c74ae3ff923e212b520998a2 SHA512 1b09306c05587c278fcd881e0d3c169d44d960d8578f310adbd79b054683c257d0ee00d6bdfb5b0d7cd81c224f3572c2c7538a42d964817d587632128b96daa9 +DIST dssp-4.4.1.tar.gz 161797 BLAKE2B d6bfb40a730f39e9d5a0988ce22a9dd377ec08a09e29f77e5afaac26d512cf87f6e289c1e4e3e63cfef7354b10fb57bf410bcc169604b1b6a6078380e4f08d26 SHA512 1bcf9e16efc5d3a7de11e24ed63e47d3263123af4670b8f3daa97cdf7cc33202fb4d564acac3024ed4edcce1ef8278f71f5312f27a234d2957afa6f563c88ed6 diff --git a/sci-chemistry/dssp/dssp-4.4.0.ebuild b/sci-chemistry/dssp/dssp-4.4.1.ebuild index daf7c4f9314d..d79883c4e211 100644 --- a/sci-chemistry/dssp/dssp-4.4.0.ebuild +++ b/sci-chemistry/dssp/dssp-4.4.1.ebuild @@ -11,20 +11,35 @@ SRC_URI="https://github.com/PDB-REDO/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${ LICENSE="BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +# doc disabled as it only generates a PDF from the manpage for now +# https://github.com/PDB-REDO/dssp/issues/64 +#IUSE="doc" -BDEPEND=" +CDEPEND=" dev-libs/boost:=[zlib] >=dev-libs/libmcfp-1.2.2 >=sci-libs/libcifpp-5.1.0 " +BDEPEND="${CDEPEND}" +# doc? ( +# || ( app-text/pandoc-bin[pandoc-symlink] app-text/pandoc ) +# dev-python/weasyprint +# ) DEPEND="" -RDEPEND="${BDEPEND}" +RDEPEND="${CDEPEND}" + +#src_prepare() { +# # wkhtmltopdf is not available on Gentoo +# sed -i -e \ +# 's/-t html/-t html --pdf-engine=weasyprint/' \ +# CMakeLists.txt +# cmake_src_prepare +#} src_configure() { - # gxrio not packaged local mycmakeargs=( - -DBUILD_WEBSERVER=OFF + #-DGENERATE_DOCUMENTATION=$(usex doc) + -DGENERATE_DOCUMENTATION=NO ) cmake_src_configure } |