From 75b3199f36a6afae6162ee4eb54716ed9fd1e09d Mon Sep 17 00:00:00 2001 From: Andrei Horodniceanu Date: Sat, 9 Mar 2024 20:21:26 +0200 Subject: net-misc/onedrive: port to dlang-single.eclass Signed-off-by: Andrei Horodniceanu --- net-misc/onedrive/onedrive-2.4.25-r1.ebuild | 62 +++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 net-misc/onedrive/onedrive-2.4.25-r1.ebuild (limited to 'net-misc') diff --git a/net-misc/onedrive/onedrive-2.4.25-r1.ebuild b/net-misc/onedrive/onedrive-2.4.25-r1.ebuild new file mode 100644 index 0000000..668b493 --- /dev/null +++ b/net-misc/onedrive/onedrive-2.4.25-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Free Client for OneDrive on Linux" +HOMEPAGE="https://abraunegg.github.io/" +LICENSE="GPL-3" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +SRC_URI="https://codeload.github.com/abraunegg/onedrive/tar.gz/v${PV} -> ${P}.tar.gz" +IUSE="debug libnotify" + +DLANG_COMPAT=( dmd-2_{106..107} ldc2-1_{35..36} ) + +inherit dlang-single systemd bash-completion-r1 + +REQUIRED_USE=${DLANG_REQUIRED_USE} +RDEPEND=" + ${DLANG_DEPS} + >=dev-db/sqlite-3.7.15:3 + net-misc/curl + libnotify? ( x11-libs/libnotify ) +" +DEPEND=" + ${RDEPEND} + virtual/pkgconfig +" +BDEPEND=${DLANG_DEPS} + +src_configure() { + DCFLAGS="${DCFLAGS} ${DLANG_LDFLAGS}" econf \ + --disable-version-check --enable-completions \ + $(use_enable debug) $(use_enable libnotify notifications) \ + --with-zsh-completion-dir=/usr/share/zsh/site-functions \ + --with-bash-completion-dir="$(get_bashcompdir)" \ + --with-fish-completion-dir=/usr/share/fish/completions \ + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" \ + --with-systemduserunitdir="$(systemd_get_userunitdir)" +} + +src_install() { + emake DESTDIR="${D}" docdir=/usr/share/doc/${PF} install + # log directory + keepdir /var/log/onedrive + fperms 775 /var/log/onedrive + fowners root:users /var/log/onedrive + # init script + dobin contrib/init.d/onedrive_service.sh + newinitd contrib/init.d/onedrive.init onedrive +} + +pkg_postinst() { + elog "OneDrive Free Client needs to be authorized to access your data before the" + elog "first use. To do so, run onedrive in a terminal for the user in question and" + elog "follow the steps on screen." + elog + ewarn "When upgrading from 2.3 you are required to reauthorise your client." + ewarn "This is due to changing the client identifier to assist with resolving" + ewarn "the correct handling of 429 error responses (activityLimitReached)" +} -- cgit v1.2.3-65-gdbad