39 lines
993 B
Bash
39 lines
993 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-misc/when/when-1.1.28.ebuild,v 1.4 2011/08/22 11:15:45 xmw Exp $
|
|
|
|
EAPI=4
|
|
|
|
DESCRIPTION="Extremely simple personal calendar program aimed at the Unix geek who wants something minimalistic"
|
|
HOMEPAGE="http://www.lightandmatter.com/when/when.html"
|
|
SRC_URI="http://www.lightandmatter.com/when/when.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Artistic"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
|
|
IUSE=""
|
|
|
|
DEPEND="dev-lang/perl"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}"/when_dist
|
|
|
|
src_prepare() {
|
|
# Fix path for tests
|
|
sed -i 's,^ when, ./when,' Makefile
|
|
}
|
|
|
|
src_compile() { :; }
|
|
|
|
src_test() {
|
|
# The when command requires these files, or attempts to run setup function.
|
|
mkdir "${HOME}"/.when
|
|
touch "${HOME}"/.when/{calendar,preferences}
|
|
emake test
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
doman ${PN}.1
|
|
dodoc README
|
|
}
|