blob: c22dd58b0400ffcbf35d3de2243d2a3f9585d6d8 (
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
|
# 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.13.ebuild,v 1.2 2005/04/10 18:35:10 eradicator 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 ~arm ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~ppc64"
IUSE="debug ipv6"
RDEPEND="!<=net-im/silc-client-1.0.1"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
# They have incorrect DESTDIR usage
sed -i '/\$(srcdir)\/tutorial/s/\$(prefix)/\$(docdir)/' ${S}/Makefile.am
sed -i '/\$(srcdir)\/tutorial/s/\$(prefix)/\$(docdir)/' ${S}/Makefile.in
# Stop them from unsetting our CFLAGS
sed -i '/^CFLAGS=$/d' ${S}/configure || die
}
src_compile() {
econf \
--datadir=/usr/share/${PN} \
--mandir=/usr/share/man \
--includedir=/usr/include/${PN} \
--with-etcdir=/etc/silc \
--with-helpdir=/usr/share/${PN}/help \
--with-simdir=/usr/$(get_libdir)/${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)
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}/etc/${PN}/silcd.conf \
${D}/usr/share/man \
${D}/usr/share/doc/${PF}/examples \
${D}/usr/share/silc-toolkit \
${D}/var/log/silc-toolkit \
${D}/etc/silc
}
|