blob: 46111a4c738c4ea5ab738a175b8511b43cb97472 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmime/gmime-2.4.21.ebuild,v 1.3 2011/01/25 21:35:17 hwoarang Exp $
EAPI="3"
GCONF_DEBUG="no"
inherit gnome2 eutils mono libtool
DESCRIPTION="Utilities for creating and parsing messages using MIME"
HOMEPAGE="http://spruce.sourceforge.net/gmime/"
SLOT="2.4"
LICENSE="LGPL-2.1"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc mono"
RDEPEND=">=dev-libs/glib-2.12
sys-libs/zlib
mono? (
dev-lang/mono
>=dev-dotnet/gtk-sharp-2.4.0 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? (
>=dev-util/gtk-doc-1.8
app-text/docbook-sgml-utils )
mono? ( dev-dotnet/gtk-sharp-gapi )"
DOCS="AUTHORS ChangeLog NEWS PORTING README TODO"
src_prepare() {
gnome2_src_prepare
if use doc ; then
# db2html should be docbook2html
sed -i -e 's:db2html:docbook2html:' \
configure.in configure || die "sed failed (1)"
sed -i -e 's:db2html:docbook2html -o gmime-tut:g' \
docs/tutorial/Makefile.am docs/tutorial/Makefile.in \
|| die "sed failed (2)"
# Fix doc targets (bug #97154)
sed -i -e 's!\<\(tmpl-build.stamp\): !\1 $(srcdir)/tmpl/*.sgml: !' \
gtk-doc.make docs/reference/Makefile.in || die "sed failed (3)"
fi
# Use correct libdir for mono assembly
sed -i -e 's:^libdir.*:libdir=@libdir@:' \
-e 's:^prefix=:exec_prefix=:' \
-e 's:prefix)/lib:libdir):' \
mono/gmime-sharp-2.4.pc.in mono/Makefile.{am,in} || die "sed failed (4)"
elibtoolize
}
src_configure() {
econf $(use_enable mono) $(use_enable doc gtk-doc) --enable-cryptography
}
src_compile() {
MONO_PATH="${S}" emake || die "emake failed"
if use doc; then
emake -C docs/tutorial html || die "emake html failed"
fi
}
src_install() {
emake GACUTIL_FLAGS="/root '${ED}/usr/$(get_libdir)' /gacdir /usr/$(get_libdir) /package ${PN}" \
DESTDIR="${ED}" install || die "installation failed"
if use doc ; then
# we don't use docinto/dodoc, because we don't want html doc gzipped
insinto /usr/share/doc/${PF}/tutorial
doins docs/tutorial/html/*
fi
dodoc $DOCS || die "dodoc failed"
# rename these two, so they don't conflict with app-arch/sharutils
# (bug #70392) Ticho, 2004-11-10
mv "${ED}/usr/bin/uuencode" "${ED}/usr/bin/gmime-uuencode-${SLOT}"
mv "${ED}/usr/bin/uudecode" "${ED}/usr/bin/gmime-uudecode-${SLOT}"
}
|