blob: 50ed7b212cbc4904719624d115dc23d4a6a79f4c (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-annex/git-annex-3.20121211-r2.ebuild,v 1.2 2013/07/21 17:52:00 ottxor Exp $
EAPI=5
# ebuild generated by hackport 0.3.1.9999
CABAL_FEATURES="bin" # test-suite" broken
inherit haskell-cabal
DESCRIPTION="manage files with git, without checking their contents into git"
HOMEPAGE="http://git-annex.branchable.com/"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
IUSE="dbus doc inotify s3 test"
RESTRICT=test # don't seem to like our git environment much, does not ship all files
RDEPEND=">=dev-vcs/git-1.7.7" # TODO: add more deps?
DEPEND="${RDEPEND}
test? ( dev-haskell/hunit
dev-haskell/testpack
)
dev-haskell/bloomfilter
>=dev-haskell/cabal-1.8
dev-haskell/dataenc
dev-haskell/edit-distance
dev-haskell/extensible-exceptions
dev-haskell/hslogger
dev-haskell/http
dev-haskell/ifelse
dev-haskell/json[generic]
dev-haskell/lifted-base
dev-haskell/missingh
dev-haskell/monad-control
>=dev-haskell/mtl-2.1.1
>=dev-haskell/network-2.0
dev-haskell/pcre-light
>=dev-haskell/quickcheck-2.1
dev-haskell/safesemaphore
dev-haskell/sha
dev-haskell/text
dev-haskell/transformers-base
dev-haskell/utf8-string
>=dev-lang/ghc-7.4.1
dbus? ( >=dev-haskell/dbus-0.10.3 )
inotify? ( dev-haskell/hinotify )
s3? ( dev-haskell/hs3 )
dev-lang/perl
doc? ( www-apps/ikiwiki net-misc/rsync )"
# dev-lang/perl is to build the manpages
# www-apps/ikiwiki and net-misc/rsync used to build the rest of the docs
src_prepare() {
#epatch "${FILESDIR}"/${P}-no-tf.patch
echo 'mans: $(mans)' >>"${S}"/Makefile
# there is no kqueue on linux, but should be on freebsd and solaris(?)
cabal_chdeps \
'testpack' 'testpack, SafeSemaphore' \
'if (! os(windows) && ! os(solaris))' 'if (! os(windows) && ! os(linux))'
}
src_configure() {
haskell-cabal_src_configure \
--flag=-Assistant \
$(cabal_flag dbus Dbus) \
--flag=-DNS \
$(cabal_flag inotify Inotify) \
--flag=-Pairing \
$(cabal_flag s3 S3) \
--flag=-Webapp \
--flag=-WebDAV \
--flag=-XMPP
}
src_compile() {
haskell-cabal_src_compile
use doc && emake docs
emake mans
}
src_test() {
export GIT_CONFIG=${T}/temp-git-config
git config user.email "git@src_test"
git config user.name "Mr. ${P} The Test"
emake test
}
src_install() {
haskell-cabal_src_install
dosym git-annex /usr/bin/git-annex-shell # standard make install does more, than needed
emake install-mans DESTDIR="${D}" PREFIX="${EPREFIX}/usr"
use doc && emake install-docs DESTDIR="${D}" PREFIX="${EPREFIX}/usr"
mv "${ED}"/usr/share/doc/{${PN},${PF}}
dodoc CHANGELOG README
}
|