blob: ce5997f94d98bd19aeccfd73c54ccb5deb414914 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/srlog2/srlog2-0.85.ebuild,v 1.4 2010/01/14 12:25:05 bangert Exp $
inherit toolchain-funcs eutils multilib
DESCRIPTION="Secure Remote Log transmission system"
HOMEPAGE="http://untroubled.org/srlog2/"
SRC_URI="http://untroubled.org/srlog2/archive/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-libs/bglibs-1.106
app-crypt/nistp224
>=dev-libs/libtomcrypt-1.03"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
echo -n "$(tc-getCC) ${CFLAGS}" > conf-cc
echo -n "$(tc-getCC) ${LDFLAGS}" > conf-ld
echo -n "/usr/include/bglibs" > conf-bgincs
echo -n "/usr/$(get_libdir)/bglibs" > conf-bglibs
echo -n /usr/bin > conf-bin
echo -n /usr/share/man > conf-man
# Deliberatly don't fix curve25519 as its full of PIC unfriendly asm code
# uncomment and follow
# http://www.gentoo.org/proj/en/hardened/pic-fix-guide.xml (Thunk it in
# assembly) to fix curve25519/*.s
sed -i -e 's/x86cpuid /x86cpuid -fno-pie /' curve25519/curve25519.impl.do
sed -i -e 's/) >/) -fPIC >/g' curve25519/Makefile
#If this isn't fixed it just includes app-crypt/nistp224 support only
epatch "${FILESDIR}"/srlog2-0.85-fix-incude.patch
epatch "${FILESDIR}"/srlog2-0.85-jobserver-fix.patch
}
src_compile() {
emake || die "emake failed"
}
src_install() {
emake install_prefix="${D}" install || die "emake install failed"
dodoc ANNOUNCEMENT NEWS README *.html
}
pkg_postinst() {
# even with the pic code fixed this only works on 32 bit cpus
#elog 'curve25519 only works on 32-bit x86 systems at the moment'
elog 'curve25519 support is currenly broken'
}
|