blob: 80391d96ec59aeb47a7fd41cf4d654fd88678815 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/silc-toolkit/silc-toolkit-0.9.12-r2.ebuild,v 1.1.1.1 2005/11/30 10:09:49 chriswhite Exp $
inherit eutils flag-o-matic
DESCRIPTION="SDK for the SILC protocol"
HOMEPAGE="http://silcnet.org/"
SRC_URI="http://silcnet.org/download/toolkit/sources/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 mips ppc sparc x86"
IUSE="debug ipv6"
DEPEND="!<=net-im/silc-client-1.0.1"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e 's:-cp -R $(srcdir)/tutorial $(prefix):-cp -R $(srcdir)/tutorial $(docdir):' \
Makefile.in
sed -i \
-e "s:-g -O2:${CFLAGS}:g" \
configure
# Fix for amd64
[ "${ARCH}" = "amd64" ] && epatch ${FILESDIR}/${P}-64bit_goodness.patch
}
src_compile() {
# Fix for amd64
[ "${ARCH}" = "amd64" ] && append-flags -fPIC
econf \
--datadir=/usr/share/${PN} \
--mandir=/usr/share/man \
--includedir=/usr/include/${PN} \
--with-etcdir=/etc/${PN} \
--with-helpdir=/usr/share/${PN}/help \
--with-simdir=/usr/lib/${PN} \
--with-docdir=/usr/share/doc/${PF} \
--with-logsdir=/var/log/${PN} \
--enable-shared \
--enable-static \
--without-irssi \
--without-silcd \
`use_enable debug` \
`use_enable ipv6` \
|| die "econf failed"
emake || die "emake failed"
emake -C lib || die "emake -C lib failed"
}
src_install() {
make install DESTDIR=${D} || die "make install failed"
rm -rf \
${D}/usr/share/man \
${D}/etc/${PN}/silcd.conf \
${D}/usr/share/doc/${PF}/{tutorial,examples}
}
|