You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.8 KiB
77 lines
1.8 KiB
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils perl-module user
|
|
|
|
DESCRIPTION="Highly flexible server for git directory version tracker, Gentoo fork"
|
|
HOMEPAGE="https://cgit.gentoo.org/proj/gitolite-gentoo.git"
|
|
SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="contrib vim-syntax"
|
|
|
|
DEPEND="dev-lang/perl
|
|
virtual/perl-File-Path
|
|
virtual/perl-File-Temp
|
|
>=dev-vcs/git-1.6.6"
|
|
RDEPEND="${DEPEND}
|
|
!dev-vcs/gitolite
|
|
dev-perl/Net-SSH-AuthorizedKeysFile
|
|
vim-syntax? ( app-vim/gitolite-syntax )"
|
|
|
|
pkg_setup() {
|
|
enewgroup git
|
|
enewuser git -1 /bin/bash /var/lib/gitolite git
|
|
}
|
|
|
|
src_prepare() {
|
|
rm Makefile doc/COPYING || die
|
|
rm -rf contrib/{gitweb,vim} || die
|
|
|
|
echo "${PF}-gentoo" > conf/VERSION
|
|
}
|
|
|
|
src_install() {
|
|
local gl_bin="${D}/usr/bin"
|
|
gl_bin=${gl_bin/\/\//\/}
|
|
|
|
dodir /usr/share/gitolite/{conf,hooks} /usr/bin || die
|
|
|
|
export PATH="${gl_bin}:${PATH}"
|
|
./src/gl-system-install ${gl_bin} \
|
|
"${D}"/usr/share/gitolite/conf "${D}"/usr/share/gitolite/hooks || die
|
|
sed -i -e "s:${D}::g" "${D}/usr/bin/gl-setup" \
|
|
"${D}/usr/share/gitolite/conf/example.gitolite.rc" || die
|
|
|
|
rm "${D}"/usr/bin/*.pm
|
|
insinto "${VENDOR_LIB}"
|
|
doins src/*.pm || die
|
|
|
|
dodoc README.mkd doc/*
|
|
|
|
if use contrib; then
|
|
insinto /usr/share/doc/${PF}
|
|
doins -r contrib/ || die
|
|
fi
|
|
|
|
keepdir /var/lib/gitolite
|
|
fowners git:git /var/lib/gitolite
|
|
fperms 750 /var/lib/gitolite
|
|
}
|
|
|
|
pkg_postinst() {
|
|
# bug 352291
|
|
ewarn
|
|
elog "Please make sure that your 'git' user has the correct homedir (/var/lib/gitolite)."
|
|
elog "Especially if you're migrating from gitosis."
|
|
ewarn
|
|
ewarn
|
|
elog "If you use the umask feature and upgrade from <=gitolite-gentoo-1.5.9.1"
|
|
elog "then please check the permissions of all repositories using the umask feature"
|
|
ewarn
|
|
}
|