blob: be4ee7e336f97597d87440f132809edf3345db78 (
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
|
# Copyright 1999-2011 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-r3.ebuild,v 1.3 2011/06/28 12:27:22 pacho Exp $
EAPI="4"
inherit eutils mono versionator
PV_MAJOR=$(get_version_component_range 1-2)
DESCRIPTION="tool to help the programmer output log statements to a variety of output targets."
HOMEPAGE="http://logging.apache.org/log4net/"
SRC_URI="mirror://debian/pool/main/l/log4net/log4net_1.2.10+dfsg.orig.tar.gz -> ${P}.tar.gz
http://dev.gentoo.org/~pacho/dotnet/log4net.snk"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=dev-lang/mono-2.0"
DEPEND="${RDEPEND}"
src_compile() {
/usr/bin/gmcs \
-t:library \
-out:log4net.dll \
-keyfile:"${DISTDIR}"/log4net.snk \
-r:System.Data \
-r:System.Web \
$(find src -name "*.cs") || die
}
src_install() {
egacinstall log4net.dll
dodir /usr/$(get_libdir)/pkgconfig
sed -e "s:@VERSION@:${PV}:" \
-e "s:@LIBDIR@:$(get_libdir):" \
-e "s:@NET_VERSION@:2.0:" \
"${FILESDIR}"/${PN}.pc.in-r1 > "${D}"/usr/$(get_libdir)/pkgconfig/${PN}-${PV}.pc
dosym ${PN}-${PV}.pc /usr/$(get_libdir)/pkgconfig/${PN}-${PV_MAJOR}.pc
dosym ${PN}-${PV}.pc /usr/$(get_libdir)/pkgconfig/${PN}.pc
dodoc README.txt NOTICE.txt
}
|