diff options
Diffstat (limited to 'app-office/calcurse/calcurse-2.5.ebuild')
-rw-r--r-- | app-office/calcurse/calcurse-2.5.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/app-office/calcurse/calcurse-2.5.ebuild b/app-office/calcurse/calcurse-2.5.ebuild deleted file mode 100644 index c55dfb4902c5..000000000000 --- a/app-office/calcurse/calcurse-2.5.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/calcurse/calcurse-2.5.ebuild,v 1.1 2009/01/25 11:42:36 cedk Exp $ - -inherit eutils - -DESCRIPTION="a text-based personal organizer" -HOMEPAGE="http://culot.org/calcurse/index.html" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="linguas_en linguas_fr linguas_de linguas_es linguas_nl" - -DEPEND="sys-libs/ncurses" -RDEPEND=${DEPEND} - -src_unpack() { - unpack ${A} - cd "${S}" - rm po/LINGUAS -} - -src_compile() { - local ALL_LINGUAS="" - - use linguas_en && ALL_LINGUAS="${ALL_LINGUAS} en" - use linguas_fr && ALL_LINGUAS="${ALL_LINGUAS} fr" - use linguas_de && ALL_LINGUAS="${ALL_LINGUAS} de" - use linguas_es && ALL_LINGUAS="${ALL_LINGUAS} es" - use linguas_nl && ALL_LINGUAS="${ALL_LINGUAS} nl" - - ALL_LINGUAS="${ALL_LINGUAS}" econf || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README TODO - dohtml doc/*.{html,css} -} |