diff --git a/app-accessibility/espeak-ng/Manifest b/app-accessibility/espeak-ng/Manifest
deleted file mode 100644
index c53c5a1250..0000000000
--- a/app-accessibility/espeak-ng/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST espeak-ng-1.50.tgz 21344932 BLAKE2B 02e0070ab7d0fba321e39e920ba60276d0046955eb40c042a3b0faf93967ae3b1ab88308ece32b7a623d92074943884b214aab13589511726823f0a5d11916de SHA512 753de58ceaf1bbbbe5cb19430cc04dd6bcee79080c8908ebe48645d52fdba5b6e7b1e2cab923220488f83a58e20364e93ba021868676fedfa5b8ede010aed443
diff --git a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild b/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
deleted file mode 100644
index fb68cea738..0000000000
--- a/app-accessibility/espeak-ng/espeak-ng-1.50.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Software speech synthesizer for English, and some other languages"
-HOMEPAGE="https://github.com/espeak-ng/espeak-ng"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tgz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-3+ turkowski unicode"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc +klatt l10n_ru l10n_zh mbrola +sonic +sound"
-
-DEPEND="
- !app-accessibility/espeak
- mbrola? ( app-accessibility/mbrola )
- sonic? ( media-libs/sonic )
- sound? ( media-libs/pcaudiolib )
-"
-RDEPEND="${DEPEND}
- sound? ( media-sound/sox )
-"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-text/ronn )
-"
-
-DOCS=( CHANGELOG.md README.md docs )
-
-src_prepare() {
- default
-
- # disable failing tests
- rm tests/{language-pronunciation,translate}.test || die
- sed -e "/language-pronunciation.check/d" \
- -e "/translate.check/d" \
- -i Makefile.am || die
-
- sed "s/int samplerate;/static int samplerate;/" -i src/espeak-ng.c || die
-
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with klatt) \
- $(use_with l10n_ru extdict-ru) \
- $(use_with l10n_zh extdict-zh) \
- $(use_with l10n_zh extdict-zhy) \
- $(use_with mbrola) \
- $(use_with sound pcaudiolib) \
- $(use_with sonic) \
- --with-async \
- --without-libfuzzer \
- --disable-rpath
-}
-
-src_compile() {
- emake -j1
-}
-
-src_test() {
- emake check
-}
-
-src_install() {
- emake DESTDIR="${D}" VIMDIR=/usr/share/vimfiles install
- rm "${ED}"/usr/lib*/libespeak.la || die
- rm "${ED}"/usr/lib*/libespeak-ng.{a,la} || die
-}
diff --git a/app-accessibility/espeak-ng/metadata.xml b/app-accessibility/espeak-ng/metadata.xml
deleted file mode 100644
index 8d0f51cd71..0000000000
--- a/app-accessibility/espeak-ng/metadata.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
- Reece H. Dunn
- msclrhd@gmail.com
-
- espeak-ng/espeak-ng
- https://github.com/espeak-ng/espeak-ng/releases.atom
-
-
- cyber+gentoo@sysrq.in
- Anna
-
-
-
diff --git a/dev-cpp/pcg-cpp/files/pcg-cpp.pc b/dev-cpp/pcg-cpp/files/pcg-cpp.pc
new file mode 100644
index 0000000000..b289efc015
--- /dev/null
+++ b/dev-cpp/pcg-cpp/files/pcg-cpp.pc
@@ -0,0 +1,9 @@
+prefix=@PREFIX@
+exec_prefix=${prefix}
+includedir=${prefix}/include
+
+Name: pcg-cpp
+Description: Family of better random number generators
+URL: https://www.pcg-random.org
+Version: 0.98.1
+Cflags: -I${includedir}
diff --git a/dev-cpp/pcg-cpp/metadata.xml b/dev-cpp/pcg-cpp/metadata.xml
index 8f65b2c6ae..48ce5f4921 100644
--- a/dev-cpp/pcg-cpp/metadata.xml
+++ b/dev-cpp/pcg-cpp/metadata.xml
@@ -4,6 +4,7 @@
mneme/pcg-cpp
https://github.com/imneme/pcg-cpp/issues
+ https://www.pcg-random.org/using-pcg-cpp.html
cyber+gentoo@sysrq.in
diff --git a/dev-cpp/pcg-cpp/pcg-cpp-0.98.1_p20210406.ebuild b/dev-cpp/pcg-cpp/pcg-cpp-0.98.1_p20210406-r1.ebuild
similarity index 64%
rename from dev-cpp/pcg-cpp/pcg-cpp-0.98.1_p20210406.ebuild
rename to dev-cpp/pcg-cpp/pcg-cpp-0.98.1_p20210406-r1.ebuild
index 1687284f61..c6afd30869 100644
--- a/dev-cpp/pcg-cpp/pcg-cpp-0.98.1_p20210406.ebuild
+++ b/dev-cpp/pcg-cpp/pcg-cpp-0.98.1_p20210406-r1.ebuild
@@ -1,9 +1,9 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-inherit toolchain-funcs
+inherit multilib toolchain-funcs
COMMIT="ffd522e7188bef30a00c74dc7eb9de5faff90092"
DESCRIPTION="Family of better random number generators"
@@ -14,15 +14,10 @@ S="${WORKDIR}/${PN}-${COMMIT}"
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="test"
+IUSE="examples test"
RESTRICT="!test? ( test )"
-src_prepare() {
- default
- sed "s/install: all/install:/" -i Makefile || die
-}
-
-# this code installs only headers
+# header-only library
src_compile() {
tc-export CXX
if use test ; then
@@ -37,5 +32,14 @@ src_test() {
}
src_install() {
- emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+ doheader include/*
+
+ docompress -x /usr/share/doc/${PF}/sample
+ use examples && dodoc -r sample
+ einstalldocs
+
+ insinto /usr/$(get_libdir)/pkgconfig
+ doins "${FILESDIR}"/pcg-cpp.pc
+ sed -e "s:@PREFIX@:${EPREFIX}/usr:" \
+ -i "${ED}"/usr/$(get_libdir)/pkgconfig/pcg-cpp.pc || die
}
diff --git a/games-server/among-sus/Manifest b/games-server/among-sus/Manifest
new file mode 100644
index 0000000000..512824baa7
--- /dev/null
+++ b/games-server/among-sus/Manifest
@@ -0,0 +1 @@
+DIST among-sus-20210519.tar.gz 23784 BLAKE2B d9a215c0654f1db3d39e8ed10f792a464a1e843e863cbb5c986b6074885d10a9912ba143f8e1f692e001e7b495296b0cf92f1ce62cd533a0f7aabe871900cb5f SHA512 873a736a02f921758f3c5faac0b5d46c5f5f36f605fbfb0c5da42544a4fbd27bc73d1a2f1f82468c3f173cf4c25a28eee35d9f6b83c0809c59fb0aa954d925ab
diff --git a/games-server/among-sus/among-sus-20210519.ebuild b/games-server/among-sus/among-sus-20210519.ebuild
new file mode 100644
index 0000000000..c0d8b11e48
--- /dev/null
+++ b/games-server/among-sus/among-sus-20210519.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic
+
+COMMIT="554e60bf52e3fa931661b9414189a92bb8f69d78"
+DESCRIPTION="Among Us, but it's a text adventure"
+HOMEPAGE="https://sr.ht/~martijnbraam/among-sus"
+SRC_URI="https://tildegit.org/tildeverse/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+notifications"
+
+src_configure() {
+ append-cppflags \
+ -DVERSION=\\\"${COMMIT:0:7}\\\" \
+ -DMOVEMENT_NOTIFICATIONS=$(usex notifications 1 0)
+}
+
+src_compile() {
+ emake main
+}
+
+src_install() {
+ newbin main ${PN}
+ einstalldocs
+
+ newinitd "${FILESDIR}"/${PN}.initd ${PN}
+ newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}
diff --git a/games-server/among-sus/files/among-sus.confd b/games-server/among-sus/files/among-sus.confd
new file mode 100644
index 0000000000..86c4ccab69
--- /dev/null
+++ b/games-server/among-sus/files/among-sus.confd
@@ -0,0 +1 @@
+# AMOGUS_PORT=1234
diff --git a/games-server/among-sus/files/among-sus.initd b/games-server/among-sus/files/among-sus.initd
new file mode 100644
index 0000000000..14886c2b5c
--- /dev/null
+++ b/games-server/among-sus/files/among-sus.initd
@@ -0,0 +1,18 @@
+#!/sbin/openrc-run
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+name="among-sus server"
+description="Among Us, but it's a text adventure"
+
+AMOGUS_PORT=${AMOGUS_PORT:-1234}
+
+command="/usr/bin/among-sus"
+command_args="-p ${AMOGUS_PORT}"
+command_user=nobody:nobody
+command_background=1
+pidfile=/run/among-sus.pid
+
+depend() {
+ need net
+}
diff --git a/games-server/among-sus/metadata.xml b/games-server/among-sus/metadata.xml
new file mode 100644
index 0000000000..a90138a525
--- /dev/null
+++ b/games-server/among-sus/metadata.xml
@@ -0,0 +1,14 @@
+
+
+
+
+ cyber+gentoo@sysrq.in
+ Anna
+
+
+ https://todo.sr.ht/~martijnbraam/among-sus
+
+
+
diff --git a/licenses/turkowski b/licenses/turkowski
deleted file mode 100644
index e470b1374a..0000000000
--- a/licenses/turkowski
+++ /dev/null
@@ -1,15 +0,0 @@
-Open Source Repository
-
-courtesy of
-Ken Turkowski
-
-The source code available from this page may be freely downloaded and used in
-any applications for any purpose, as long as the code is used in its entirety
-and the copyright notice and warranty information is retained.
-
-If you make any improvements to this software, you should provide me with said
-improvements.
-
-If any of this code is incorporated into a commercial product, you should
-notify me of this by email, and provide me with a complimentary copy of said
-product. :-)
diff --git a/media-libs/pcaudiolib/Manifest b/media-libs/pcaudiolib/Manifest
deleted file mode 100644
index eeceaf3b63..0000000000
--- a/media-libs/pcaudiolib/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pcaudiolib-1.1.tar.gz 34049 BLAKE2B 7c6ce1532c47db30db2b80be690453257148be9a7115cd24dabda3dfcaca667d5c3a8278276f278556406144461cda48905ce581f0fde2f8429b3f829a948a36 SHA512 d503c11b355601e1e05f0f438a0cd9ce277d19fd53d3f7edf26f6e17f1f8184e8b2112a282e8ed74db8646bb5534d2a9a3c707b1742ce02ef13fd89669785007
diff --git a/media-libs/pcaudiolib/metadata.xml b/media-libs/pcaudiolib/metadata.xml
deleted file mode 100644
index f275e1fe93..0000000000
--- a/media-libs/pcaudiolib/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
- Reece H. Dunn
- msclrhd@gmail.com
-
- espeak-ng/pcaudiolib
- https://github.com/espeak-ng/pcaudiolib/issues
- https://github.com/espeak-ng/pcaudiolib/raw/master/CHANGELOG.md
-
-
- cyber+gentoo@sysrq.in
- Anna
-
-
diff --git a/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild b/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild
deleted file mode 100644
index dc3fa51a2e..0000000000
--- a/media-libs/pcaudiolib/pcaudiolib-1.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Portable C Audio Library"
-HOMEPAGE="https://github.com/espeak-ng/pcaudiolib"
-SRC_URI="https://github.com/espeak-ng/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+ ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa oss pulseaudio"
-REQUIRED_USE="|| ( alsa oss pulseaudio )"
-
-RDEPEND="
- alsa? ( >=media-libs/alsa-lib-1.0.18 )
- pulseaudio? ( media-sound/pulseaudio )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_with oss) \
- $(use_with alsa) \
- $(use_with pulseaudio)
-}
-
-src_install() {
- default
- rm "${ED}"/usr/lib*/libpcaudio.{a,la} || die
-}
diff --git a/sci-biology/cmdock/Manifest b/sci-biology/cmdock/Manifest
index c20f5e3058..84968a8f8e 100644
--- a/sci-biology/cmdock/Manifest
+++ b/sci-biology/cmdock/Manifest
@@ -1,2 +1 @@
-DIST cmdock-v0.1.2.tar.gz 13394195 BLAKE2B bd377b6a953d1e38b527da4eda36aee7a634e9f0c400487d4092ae1939589890038fc90052d8bddb25457dd027fa929acd50e836d65bd5994af89116f4c770a7 SHA512 90d4114a10dde99d34cd7ea4b28399da744cc295adebb10f1f9771b59841cd13e07cae5218643c90dd2847cdb014867ab795649a3d1883396a3609c3344b8226
DIST cmdock-v0.1.3.tar.gz 13416412 BLAKE2B abd6382943fb2ca2459fa493f8025e335821b96a95b88267dd493c28cd3280481b41ec6480fd3514cff126ab1077e89f075e5311393b1cd366403419e9c47454 SHA512 d941b672d14bad4fda4eaeb7aa313da1ade213241a1aee392747943a03afb6c66b3e93b8fd7eb9b1d8095b0632bd48cb062879cf445e3b54ce07069ad3087b22
diff --git a/sci-biology/cmdock/cmdock-0.1.2.ebuild b/sci-biology/cmdock/cmdock-0.1.2.ebuild
deleted file mode 100644
index 00934f81c0..0000000000
--- a/sci-biology/cmdock/cmdock-0.1.2.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
-DOCS_BUILDER="sphinx"
-DOCS_AUTODOC=0
-DOCS_DIR="docs"
-inherit python-any-r1 docs meson
-
-DESCRIPTION="Program for docking ligands to proteins and nucleic acids"
-HOMEPAGE="https://gitlab.com/Jukic/cmdock"
-SRC_URI="https://gitlab.com/Jukic/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
-S="${WORKDIR}/${PN}-v${PV}"
-
-LICENSE="LGPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64"
-IUSE="boinc"
-
-RDEPEND="
- dev-lang/perl
- boinc? ( sci-misc/boinc-wrapper )
-"
-BDEPEND="
- dev-cpp/eigen:3
- dev-cpp/pcg-cpp
- dev-libs/cxxopts
-"
-
-src_prepare() {
- default
- sed "s|pcg_cpp_dep = dependency.*|pcg_cpp_dep = declare_dependency(include_directories: '/usr/include')|" -i meson.build || die
-}
-
-src_configure() {
- # very weird directory layout
- local emesonargs=(
- --prefix="${EPREFIX}/opt/cmdock-${PV}"
- )
- meson_src_configure
-}
-
-src_compile() {
- meson_src_compile
- docs_compile
-}
-
-src_install() {
- meson_src_install
-
- if use boinc ; then
- insinto /var/lib/boinc/projects/www.sidock.si_sidock
- newins "${FILESDIR}/app_info_${PV}.xml" app_info.xml
- doins "${FILESDIR}/cmdock-boinc_job_${PV}.xml"
- doins "${FILESDIR}/cmdock-boinc-zip_job_${PV}.xml"
-
- dosym ../../../../../usr/bin/boinc-wrapper /var/lib/boinc/projects/www.sidock.si_sidock/cmdock-wrapper_${PV}
- dosym ../../../../../usr/bin/boinc-wrapper /var/lib/boinc/projects/www.sidock.si_sidock/cmdock-boinc-zip_wrapper_${PV}
- fi
-}
-
-pkg_postinst() {
- if use boinc ; then
- touch /var/lib/boinc/projects/www.sidock.si_sidock/docking_out.sd || die
- elog
- elog "The easiest way to do something useful with this application"
- elog "is to attach it to SiDock@home BOINC project."
- elog
- elog "- Master URL: https://sidock.si/sidock/"
- elog "- Invitation code: Crunch_4Science"
- fi
-}
diff --git a/sci-biology/cmdock/cmdock-0.1.3.ebuild b/sci-biology/cmdock/cmdock-0.1.3.ebuild
index c4a2da7b42..e42b1f253e 100644
--- a/sci-biology/cmdock/cmdock-0.1.3.ebuild
+++ b/sci-biology/cmdock/cmdock-0.1.3.ebuild
@@ -1,9 +1,9 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-PYTHON_COMPAT=( python3_{7..10} pypy3 )
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
DOCS_BUILDER="sphinx"
DOCS_AUTODOC=0
DOCS_DIR="docs"
@@ -26,14 +26,13 @@ RDEPEND="
BDEPEND="
dev-cpp/eigen:3
dev-cpp/indicators
- dev-cpp/pcg-cpp
+ >=dev-cpp/pcg-cpp-0.98.1_p20210406-r1
dev-libs/cxxopts
"
src_prepare() {
default
rm -r include/indicators || die
- sed "s|pcg_cpp_dep = dependency.*|pcg_cpp_dep = declare_dependency(include_directories: '/usr/include')|" -i meson.build || die
}
src_configure() {
@@ -55,13 +54,9 @@ src_install() {
if use boinc ; then
insinto /var/lib/boinc/projects/www.sidock.si_sidock
newins "${FILESDIR}/app_info_${PV}.xml" app_info.xml
- doins "${FILESDIR}/cmdock-boinc_job_${PV}.xml"
doins "${FILESDIR}/cmdock-boinc-zcp_job_${PV}.xml"
- newins "${FILESDIR}/cmdock-boinc-zcp_job_${PV}.xml" cmdock-boinc-zip_job_${PV}.xml
- dosym ../../../../../usr/bin/boinc-wrapper /var/lib/boinc/projects/www.sidock.si_sidock/cmdock-wrapper_${PV}
- dosym ../../../../../usr/bin/boinc-wrapper /var/lib/boinc/projects/www.sidock.si_sidock/cmdock-boinc-zcp_wrapper_${PV}
- dosym ../../../../../usr/bin/boinc-wrapper /var/lib/boinc/projects/www.sidock.si_sidock/cmdock-boinc-zip_wrapper_${PV}
+ dosym -r /usr/bin/boinc-wrapper /var/lib/boinc/projects/www.sidock.si_sidock/cmdock-boinc-zcp_wrapper_${PV}
fi
}
diff --git a/sci-biology/cmdock/files/app_info_0.1.2.xml b/sci-biology/cmdock/files/app_info_0.1.2.xml
deleted file mode 100644
index f7575656b9..0000000000
--- a/sci-biology/cmdock/files/app_info_0.1.2.xml
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
- cmdock-boinc
- CurieMarieDock on BOINC
-
-
- cmdock-boinc-zip
- CurieMarieDock on BOINC + zipped input
-
-
-
- cmdock-wrapper_0.1.2
-
-
-
- cmdock-boinc-zip_wrapper_0.1.2
-
-
-
-
- cmdock-boinc_job_0.1.2.xml
-
-
- cmdock-boinc-zip_job_0.1.2.xml
-
-
- docking_out.sd
-
-
-
- cmdock-boinc
- 102
-
- cmdock-wrapper_0.1.2
-
-
-
- cmdock-boinc_job_0.1.2.xml
- job.xml
-
-
-
- docking_out.sd
- docking_out.sd
-
-
-
-
- cmdock-boinc-zip
- 204
-
- cmdock-boinc-zip_wrapper_0.1.2
-
-
-
- cmdock-boinc-zip_job_0.1.2.xml
- job.xml
-
-
-
- docking_out.sd
- docking_out.sd
-
-
-
-
diff --git a/sci-biology/cmdock/files/app_info_0.1.3.xml b/sci-biology/cmdock/files/app_info_0.1.3.xml
index 5c901eba8b..162ad0c05d 100644
--- a/sci-biology/cmdock/files/app_info_0.1.3.xml
+++ b/sci-biology/cmdock/files/app_info_0.1.3.xml
@@ -1,61 +1,21 @@
-
- cmdock-boinc
- CurieMarieDock on BOINC
-
-
- cmdock-boinc-zip
- CurieMarieDock on BOINC + zipped input
-
cmdock-boinc-zcp
CurieMarieDock on BOINC + zipped input, checkpoints and progress bar
-
- cmdock-wrapper_0.1.3
-
-
cmdock-boinc-zcp_wrapper_0.1.3
-
- cmdock-boinc-zip_wrapper_0.1.3
-
-
-
- cmdock-boinc_job_0.1.3.xml
-
cmdock-boinc-zcp_job_0.1.3.xml
-
- cmdock-boinc-zip_job_0.1.3.xml
-
docking_out.sd
-
- cmdock-boinc
- 103
-
- cmdock-wrapper_0.1.3
-
-
-
- cmdock-boinc_job_0.1.3.xml
- job.xml
-
-
-
- docking_out.sd
- docking_out.sd
-
-
-
cmdock-boinc-zcp
100
@@ -74,22 +34,4 @@
-
- cmdock-boinc-zip
- 300
-
- cmdock-boinc-zip_wrapper_0.1.3
-
-
-
- cmdock-boinc-zip_job_0.1.3.xml
- job.xml
-
-
-
- docking_out.sd
- docking_out.sd
-
-
-
diff --git a/sci-biology/cmdock/files/cmdock-boinc-zip_job_0.1.2.xml b/sci-biology/cmdock/files/cmdock-boinc-zip_job_0.1.2.xml
deleted file mode 100644
index a11f1fe9b2..0000000000
--- a/sci-biology/cmdock/files/cmdock-boinc-zip_job_0.1.2.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
- /opt/cmdock-0.1.2/build/cmdock
- docking_log
- -c -r target.prm -p /opt/cmdock-0.1.2/data/scripts/dock.prm -f htvs.ptc -i ligands.sdf -o docking_out
- docking_out.chk
- CMDOCK_ROOT=/opt/cmdock-0.1.2
- LD_LIBRARY_PATH=/opt/cmdock-0.1.2/build:$LD_LIBRARY_PATH
- PERL5LIB=/opt/cmdock-0.1.2/lib:$PERL5LIB
-
-
- ligands.zip
-
-
diff --git a/sci-biology/cmdock/files/cmdock-boinc_job_0.1.2.xml b/sci-biology/cmdock/files/cmdock-boinc_job_0.1.2.xml
deleted file mode 100644
index c670b677e2..0000000000
--- a/sci-biology/cmdock/files/cmdock-boinc_job_0.1.2.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- /opt/cmdock-0.1.2/build/cmdock
- docking_log
- -r target.prm -p /opt/cmdock-0.1.2/data/scripts/dock.prm -f htvs.ptc -i ligands.sdf -o docking_out
- CMDOCK_ROOT=/opt/cmdock-0.1.2
- LD_LIBRARY_PATH=/opt/cmdock-0.1.2/build:$LD_LIBRARY_PATH
- PERL5LIB=/opt/cmdock-0.1.2/lib:$PERL5LIB
-
-
diff --git a/sci-biology/cmdock/files/cmdock-boinc_job_0.1.3.xml b/sci-biology/cmdock/files/cmdock-boinc_job_0.1.3.xml
deleted file mode 100644
index 6082dc8fe7..0000000000
--- a/sci-biology/cmdock/files/cmdock-boinc_job_0.1.3.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- /opt/cmdock-0.1.3/build/cmdock
- docking_log
- -r target.prm -p /opt/cmdock-0.1.3/data/scripts/dock.prm -f htvs.ptc -i ligands.sdf -o docking_out
- CMDOCK_ROOT=/opt/cmdock-0.1.3
- LD_LIBRARY_PATH=/opt/cmdock-0.1.3/build:$LD_LIBRARY_PATH
- PERL5LIB=/opt/cmdock-0.1.3/lib:$PERL5LIB
-
-