From julien.cynober at free.fr Fri Jan 26 17:02:18 2007 From: julien.cynober at free.fr (julien.cynober at free.fr) Date: Fri, 26 Jan 2007 17:02:18 +0100 Subject: [icalendar-dev] Gentoo ebuild Message-ID: <1169827338.45ba260a7efc1@imp.free.fr> Hi, I just wrote an ebuild (installation file) for the Gentoo Linux distribution : ---------- # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit distutils DESCRIPTION="Package used for parsing and generating iCalendar files (RFC 2445)." HOMEPAGE="http://codespeak.net/icalendar/" SRC_URI="http://codespeak.net/icalendar/${P}.tgz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND=">=dev-lang/python-2.3" RDEPEND="${DEPEND}" DOCS="CHANGES.txt CREDITS.txt doc/* HISTORY.txt README.txt TODO.txt" src_test() { ${python} test.py } ---------- Gentoo users who want to install this module just have to save this plain text file as "iCalendar-1.2.ebuild" (or whatever version) in a Gentoo overlay (ie. /usr/local/portage) under "dev-python", and can then install iCalendar the usual gentoo way (ie. 'emerge dev-python/iCalendar' or just 'emerge iCalendar'). Testing and comments welcome.