blob: e5195419e2df67206fda50025bdef83ad3320f9c (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/log4net/log4net-1.2.10-r1.ebuild,v 1.2 2007/08/20 19:01:30 jokey Exp $
inherit eutils mono
DESCRIPTION="tool to help the programmer output log statements to a variety of output targets."
HOMEPAGE="http://logging.apache.org/log4net/"
SRC_URI="http://cvs.apache.org/dist/incubator/${PN}/${PV}/incubating-${P}.zip"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="x86"
IUSE="doc examples"
DEPEND=">=dev-lang/mono-1.2.1
dev-dotnet/nant
app-arch/unzip"
src_unpack() {
unpack ${A}
cd ${S}
# Removing unnecessary precompiled binaries
elog "Removing precompiled binaries"
rm -rf bin/*
}
src_compile() {
/usr/bin/sn -k ${PN}.snk
/usr/bin/nant || die "build failed"
}
src_install() {
insinto /usr/$(get_libdir)/${PN}/1.0
doins bin/mono/1.0/release/${PN}.dll
insinto /usr/$(get_libdir)/${PN}/2.0
doins bin/mono/2.0/release/${PN}.dll
dodir /usr/$(get_libdir)/pkgconfig
sed -e "s:@VERSION@:${PV}:" \
-e "s:@LIBDIR@:$(get_libdir):" \
-e "s:@NET_VERSION@:1.0:" \
${FILESDIR}/${PN}.pc.in > ${D}/usr/$(get_libdir)/pkgconfig/${PN}.pc
sed -e "s:@VERSION@:${PV}:" \
-e "s:@LIBDIR@:$(get_libdir):" \
-e "s:@NET_VERSION@:2.0:" \
${FILESDIR}/${PN}.pc.in > ${D}/usr/$(get_libdir)/pkgconfig/${PN}-2.0.pc
if use doc; then
insinto /usr/share/doc/${PF}
doins -r doc/*
fi
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
dodoc README.txt NOTICE.txt
}
|