blob: 51044fbe81824478274ec11dce77995950e33b54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit perl-module
DESCRIPTION="Highly flexible server for git directory version tracker"
HOMEPAGE="https://github.com/sitaramc/gitolite"
SRC_URI="https://milki.github.com/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="contrib vim-syntax"
DEPEND="
dev-lang/perl
>=dev-vcs/git-1.6.6
virtual/perl-File-Path
virtual/perl-File-Temp
"
RDEPEND="
${DEPEND}
acct-group/git
acct-user/git[gitolite]
!dev-vcs/gitolite-gentoo
vim-syntax? ( app-vim/gitolite-syntax )"
src_prepare() {
rm Makefile doc/COPYING || die
rm -rf contrib/{gitweb,vim} || die
echo "${PF}" > conf/VERSION
}
src_install() {
local gl_bin="${D}/usr/bin"
gl_bin=${gl_bin/\/\//\/}
dodir /usr/share/gitolite/{conf,hooks} /usr/bin
# install using upstream method
export PATH="${gl_bin}:${PATH}"
./src/gl-system-install ${gl_bin} \
"${D}"/usr/share/gitolite/conf "${D}"/usr/share/gitolite/hooks || die
sed -e "s:${D}::g" "${D}/usr/bin/gl-setup" \
-i "${D}/usr/share/gitolite/conf/example.gitolite.rc" || die
rm "${D}"/usr/bin/*.pm
insinto "${VENDOR_LIB}"
doins src/*.pm
dodoc README.mkd doc/*
use contrib && dodoc -r contrib
}
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
}
|