# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # inherit mono DESCRIPTION="log4net is a 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/log4net/${PV}/incubating-${P}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" DEPEND="dev-lang/mono" RDEPEND="${DEPEND}" DOCS="AUTHORS BUGS ChangeLog MAINTAINERS NEWS README THANKS TODO" USE_DESTDIR="1" S=${WORKDIR}/${P} src_compile() { cd ${S} sn -k log4net.snk mcs /t:library /out:bin/log4net.dll -keyfile:log4net.snk /r:System.Data /r:System.Web `find src -name "*.cs"` } src_install() { insinto /usr/lib/log4net doins bin/log4net.dll insinto /usr/lib/pkgconfig doins ${FILESDIR}/log4net.pc gacutil -i bin/log4net.dll -check_refs -root ${D}/usr/lib/ }