overlay/www-apps/pleroma-installer/pleroma-installer-1.ebuild

68 lines
1.7 KiB
Bash

# 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=""
IUSE="apache +nginx systemd"
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
}
src_install() {
local pleromadir="${EPREFIX}/var/lib/pleroma/pleroma"
diropts -o pleroma -g pleroma
exeopts -o pleroma -g pleroma
dodir "${pleromadir}"
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
}