69 lines
1.9 KiB
Bash
69 lines
1.9 KiB
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{8..11} )
|
|
inherit python-single-r1 xdg
|
|
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/AresValley/Artemis.git"
|
|
else
|
|
SRC_URI="https://github.com/AresValley/Artemis/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
MY_PN="Artemis"
|
|
MY_P="${MY_PN}-${PV}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
fi
|
|
|
|
DESCRIPTION="Radio Signals Recognition Manual"
|
|
HOMEPAGE="https://aresvalley.com/Artemis/"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
DEPEND=""
|
|
RDEPEND="
|
|
${PYTHON_DEPS}
|
|
$(python_gen_cond_dep '
|
|
>=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
|
|
>=dev-python/certifi-2022.6.15[${PYTHON_USEDEP}]
|
|
>=dev-python/numpy-1.23.1[${PYTHON_USEDEP}]
|
|
>=dev-python/pandas-1.4.3[${PYTHON_USEDEP}]
|
|
>=dev-python/pygame-2.1.2[${PYTHON_USEDEP}]
|
|
>=dev-python/PyQt5-5.15.6[${PYTHON_USEDEP}]
|
|
>=dev-python/qtawesome-1.1.1[${PYTHON_USEDEP}]
|
|
>=dev-python/urllib3-1.26.9[${PYTHON_USEDEP}]
|
|
')
|
|
"
|
|
BDEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
default
|
|
# Do not delete the Data directory
|
|
sed -i 's/import remove/import remove, system/' "${S}/src/downloadtargetfactory.py" || die
|
|
sed -i 's;rmtree(Constants.DATA_FOLDER.*;os.system("rm -rf "+Constants.DATA_FOLDER+"/*");' "${S}/src/downloadtargetfactory.py" || die
|
|
}
|
|
|
|
src_install() {
|
|
dodir /opt
|
|
cp -r "${S}/src" "${D}/opt/${PN}" || die
|
|
|
|
# TODO: Submit PR to use XDG dirs
|
|
touch "${D}/opt/${PN}/info.log" || die
|
|
echo "{}" > "${D}/opt/${PN}/settings.json" || die
|
|
keepdir "/opt/${PN}/Data"
|
|
for target in info.log settings.json Data
|
|
do
|
|
chown root:users "${D}/opt/${PN}/${target}" || die
|
|
chmod g+rw "${D}/opt/${PN}/${target}" || die
|
|
done
|
|
|
|
dodir /usr/share/applications
|
|
dodir /usr/share/icons
|
|
cp "${FILESDIR}/artemis.desktop" "${D}/usr/share/applications" || die
|
|
cp "${S}/spec_files/Linux/artemis3.svg" "${D}/usr/share/icons" || die
|
|
dobin "${FILESDIR}/artemis"
|
|
}
|