summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2010-10-07 19:45:14 +0000
committerPacho Ramos <pacho@gentoo.org>2010-10-07 19:45:14 +0000
commit2fe5bf5b9fb719466962b2dc00a1b9a9e1970a2b (patch)
tree47d9384d64d34cd8b4e97216c212e66a1654253e /dev-dotnet/log4net
parentRemove old. (diff)
downloadgentoo-2-2fe5bf5b9fb719466962b2dc00a1b9a9e1970a2b.tar.gz
gentoo-2-2fe5bf5b9fb719466962b2dc00a1b9a9e1970a2b.tar.bz2
gentoo-2-2fe5bf5b9fb719466962b2dc00a1b9a9e1970a2b.zip
Remove old.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet/log4net')
-rw-r--r--dev-dotnet/log4net/ChangeLog8
-rw-r--r--dev-dotnet/log4net/files/log4net.pc.in8
-rw-r--r--dev-dotnet/log4net/log4net-1.2.10-r1.ebuild63
-rw-r--r--dev-dotnet/log4net/log4net-1.2.10-r2.ebuild59
4 files changed, 6 insertions, 132 deletions
diff --git a/dev-dotnet/log4net/ChangeLog b/dev-dotnet/log4net/ChangeLog
index 660200c36635..fc188f695884 100644
--- a/dev-dotnet/log4net/ChangeLog
+++ b/dev-dotnet/log4net/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-dotnet/log4net
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/log4net/ChangeLog,v 1.7 2009/10/21 15:56:38 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/log4net/ChangeLog,v 1.8 2010/10/07 19:45:14 pacho Exp $
+
+ 07 Oct 2010; Pacho Ramos <pacho@gentoo.org> -files/log4net.pc.in,
+ -log4net-1.2.10-r1.ebuild, -log4net-1.2.10-r2.ebuild:
+ Remove old.
21 Oct 2009; Markus Meier <maekke@gentoo.org> log4net-1.2.10-r3.ebuild:
amd64/x86 stable, bug #286874
diff --git a/dev-dotnet/log4net/files/log4net.pc.in b/dev-dotnet/log4net/files/log4net.pc.in
deleted file mode 100644
index 7d319c473168..000000000000
--- a/dev-dotnet/log4net/files/log4net.pc.in
+++ /dev/null
@@ -1,8 +0,0 @@
-prefix=/usr
-exec_prefix=${prefix}
-libdir=${exec_prefix}/@LIBDIR@
-
-Name: Log4net
-Description: Log4net - Logging library for C# and VB.NET
-Version: @VERSION@
-Libs: -r:${libdir}/log4net/@NET_VERSION@/log4net.dll
diff --git a/dev-dotnet/log4net/log4net-1.2.10-r1.ebuild b/dev-dotnet/log4net/log4net-1.2.10-r1.ebuild
deleted file mode 100644
index e5195419e2df..000000000000
--- a/dev-dotnet/log4net/log4net-1.2.10-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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
-}
diff --git a/dev-dotnet/log4net/log4net-1.2.10-r2.ebuild b/dev-dotnet/log4net/log4net-1.2.10-r2.ebuild
deleted file mode 100644
index e3c1b6c96880..000000000000
--- a/dev-dotnet/log4net/log4net-1.2.10-r2.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2009 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-r2.ebuild,v 1.1 2009/01/26 17:26:13 loki_val Exp $
-
-EAPI=2
-
-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"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="doc examples"
-
-RDEPEND=">=dev-lang/mono-2.0"
-DEPEND="${RDEPEND}
- >=dev-dotnet/nant-0.85"
-
-pkg_setup() {
- unset doc examples
- use doc && doc=yes
- use examples && examples=yes
-}
-
-src_prepare() {
- cp "${FILESDIR}"/log4net.snk ./
-}
-
-src_compile() {
- nant \
- -t:mono-2.0 -D:package.version=${PV} compile-mono-2.0 \
- check-package-dir check-package-version \
- set-package-configuration ${doc+package-doc} \
- ${examples+package-examples} || die "build failed"
-}
-
-src_install() {
- egacinstall bin/mono/2.0/debug/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
-
- use doc && dohtml -r build/package/log4net-1.2.10/doc/*
- if use examples
- then
- insinto /usr/share/doc/${PF}
- doins -r build/package/log4net-1.2.10/examples/
- fi
- dodoc README.txt NOTICE.txt
-}