forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keynote-2.3-r3.ebuild
53 lines (41 loc) · 959 Bytes
/
keynote-2.3-r3.ebuild
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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="The KeyNote Trust-Management System"
HOMEPAGE="http://www1.cs.columbia.edu/~angelos/keynote.html"
SRC_URI="http://www1.cs.columbia.edu/~angelos/Code/${P}.tar.gz"
LICENSE="keynote"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="libressl ssl"
RDEPEND="ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
)"
DEPEND="${RDEPEND}
virtual/yacc"
pkg_setup() {
tc-export AR CC RANLIB
# bug #448904
export ac_cv_path_AR="$(type -p $(tc-getAR))"
}
src_prepare() {
epatch "${FILESDIR}"/${P}-qa.patch
epatch "${FILESDIR}"/${P}-parallel-build.patch
}
src_compile() {
if use ssl; then
emake
else
emake nocrypto
fi
}
src_install() {
dobin keynote
dolib.a libkeynote.a
insinto /usr/include
doins keynote.h
doman man/keynote.[1345]
dodoc README HOWTO.add.crypto TODO
}