GentooMik Tux's lil' helper


Joined: 25 Nov 2004 Posts: 141
|
Posted: Wed Mar 29, 2006 5:51 am Post subject: redminer ebuild a program similar to kalarm ebuild |
|
|
Hello,
I have noticed that portage is missing redminer a program much like kalarm for kde. Here is an ebuild it seems to work.
Code: |
# Copyright 1999-2006 Gentoo Foundation Distributed under the terms of the GNU General Public License v2
# Third party ebuild may contain bugs in standards. Do not' by any means contact the gentoo developers!
# from problems arising from this ebuild. This ebuild has been posted in the spirit of sharing with other
# gentoo linux users. USE AT YOUR OWN RISK.
IUSE=""
DESCRIPTION="A program for gnome that reminds you of events and executes tasks. Something like kalarm that is installed with kde."
HOMEPAGE="http://www.gnomefiles.org/app.php?soft_id=383"
SRC_URI="http://user.cs.tu-berlin.de/~pmueller/files/${P}.tar.bz2"
RESTRICT="nomirror"
LICENSE="GPL"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=x11-libs/gtk+-2.4
>=dev-libs/libxml2
>=gnome-base/libgnomeui
>=gnome-base/gconf
>=dev-libs/glib-2.2"
RDEPEND=""
src_unpack()
{
unpack ${A}
cd ${S}
}
src_compile() {
econf || die "./configure failed"
emake || die
}
src_install() {
make install DESTDIR=${D} || die
dodoc AUTHORS INSTALL NEWS README
}
|
|
|