blob: 5089ca3a2a47d47dd90fcc0532f25c78998be7ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/remind/remind-03.00.23-r1.ebuild,v 1.1 2005/07/01 22:03:53 smithj Exp $
DESCRIPTION="Ridiculously functional reminder program"
HOMEPAGE="http://www.roaringpenguin.com/penguin/open_source_remind.php"
SRC_URI="http://www.roaringpenguin.com/penguin/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
# stupid broken makefile...
einstall || die "first einstall failed"
exeinto /usr/bin/
doexe www/rem2html
dodoc README ACKNOWLEDGEMENTS COPYRIGHT WINDOWS doc/README.UNIX \
doc/WHATSNEW* www/README.*
}
|