2019-02-06 12:44:24 +01:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit git-r3 user systemd
|
|
|
|
|
|
|
|
DESCRIPTION="Microblogging server software that can federate with other servers."
|
|
|
|
HOMEPAGE="https://pleroma.social/ https://git.pleroma.social/pleroma/pleroma/"
|
|
|
|
EGIT_REPO_URI="https://git.pleroma.social/pleroma/pleroma.git"
|
|
|
|
|
|
|
|
LICENSE="AGPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS=""
|
2019-02-08 16:53:50 +01:00
|
|
|
IUSE="apache +nginx syslog systemd"
|
2019-02-06 12:44:24 +01:00
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
>=dev-lang/elixir-1.6.6
|
|
|
|
>=dev-db/postgresql-9.6.11[uuid]
|
|
|
|
app-admin/sudo
|
|
|
|
apache? ( www-servers/apache )
|
|
|
|
nginx? ( www-servers/nginx[nginx_modules_http_slice] )
|
|
|
|
"
|
|
|
|
DEPEND=""
|
|
|
|
|
|
|
|
pkg_setup() {
|
|
|
|
enewgroup pleroma
|
|
|
|
enewuser pleroma -1 /bin/bash /var/lib/pleroma pleroma
|
|
|
|
}
|
|
|
|
|
2019-02-06 15:51:34 +01:00
|
|
|
src_prepare() {
|
|
|
|
default
|
2019-02-08 16:53:50 +01:00
|
|
|
|
|
|
|
if use syslog; then
|
2019-02-06 15:51:34 +01:00
|
|
|
# Log to syslog
|
|
|
|
sed -i 's/command_background=1/command_background=1\nerror_logger="logger"\noutput_logger="logger"/' \
|
|
|
|
installation/init.d/pleroma || die
|
|
|
|
fi
|
2019-02-08 16:53:50 +01:00
|
|
|
|
|
|
|
if use systemd; then
|
|
|
|
sed -i 's|/etc/init.d/pleroma stop|systemctl stop pleroma|' "${FILESDIR}/upgrade_pleroma.sh" || die
|
|
|
|
sed -i 's|/etc/init.d/pleroma restart|systemctl restart pleroma|' "${FILESDIR}/upgrade_pleroma.sh" || die
|
|
|
|
fi
|
2019-02-10 21:32:08 +01:00
|
|
|
|
|
|
|
ewarn "Beginning with 2019-02-10, the Pleroma init scripts expect the installation in ${EPREFIX}/opt/pleroma."
|
|
|
|
ewarn "If it is in ${EPREFIX}/var/lib/pleroma, this ebuild will fail. Move it now and remerge."
|
2019-02-06 15:51:34 +01:00
|
|
|
}
|
|
|
|
|
2019-02-06 12:44:24 +01:00
|
|
|
src_install() {
|
2019-02-10 21:15:52 +01:00
|
|
|
local pleromadir="${EPREFIX}/opt/pleroma"
|
2019-02-06 12:44:24 +01:00
|
|
|
diropts -o pleroma -g pleroma
|
|
|
|
exeopts -o pleroma -g pleroma
|
|
|
|
|
|
|
|
dodir "${pleromadir}"
|
2019-02-10 21:15:52 +01:00
|
|
|
dosym "${EPREFIX}/opt/pleroma" "${EPREFIX}/var/lib/pleroma/pleroma"
|
2019-02-06 12:44:24 +01:00
|
|
|
exeinto "${pleromadir}"
|
|
|
|
doexe "${FILESDIR}/install_pleroma.sh"
|
|
|
|
doexe "${FILESDIR}/upgrade_pleroma.sh"
|
|
|
|
|
|
|
|
if use nginx; then
|
|
|
|
dodoc installation/pleroma.nginx
|
|
|
|
fi
|
|
|
|
if use apache; then
|
|
|
|
dodoc installation/pleroma-apache.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
dodoc docs/*
|
|
|
|
|
|
|
|
if use systemd; then
|
|
|
|
systemd_dounit installation/pleroma.service
|
|
|
|
else
|
|
|
|
doinitd installation/init.d/pleroma
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
elog 'For the initial installation, become the user pleroma, cd to ${HOME}/pleroma and run ./install_pleroma.sh.'
|
|
|
|
elog "To upgrade, run ./upgrade_pleroma.sh."
|
|
|
|
elog "Make sure the user pleroma can use sudo and has a strong password."
|
|
|
|
if use nginx; then
|
|
|
|
einfo "An example config for nginx has been installed in the doc directory."
|
|
|
|
fi
|
|
|
|
if use apache; then
|
|
|
|
einfo "An example config for apache has been installed in the doc directory."
|
|
|
|
fi
|
|
|
|
}
|