# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit eutils DESCRIPTION="Cycle is a calendar program for women" HOMEPAGE="http://cycle.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="dev-lang/python dev-python/wxpython" LANGS="ca cs de es gl ru sk" src_prepare() { epatch "${FILESDIR}/cycle-0.3.1-syntax.patch" epatch "${FILESDIR}/cycle-0.3.1-locales.patch" } src_install() { insinto /usr/share/cycle doins cal_year.py cycle.py dialogs.py p_rotor.py save_load.py set_dir.py for i in bitmaps icons icons/large icons/mini; do insinto /usr/share/cycle/$i find $i -maxdepth 1 -type f -exec doins '{}' \; done for i in $LANGS; do mv msg/$i/LC_MESSAGES/cycle.mo msg/$i.mo domo msg/$i.mo done dodoc BUGS CHANGELOG COPYRIGHT INSTALL README THANKS dohtml README.html README_ru.html README_de.html echo "#!/bin/sh" > cycle echo "cd /usr/share/cycle && python cycle.py" >> cycle dobin cycle }