blob: 349f8ab80bee8c06ce2fdf98cd1df1ec41e7ec4a (
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
27
28
29
30
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cbtracker/cbtracker-1.0b.ebuild,v 1.5 2005/01/01 14:54:37 eradicator Exp $
DESCRIPTION="CheckBook Tracker finance manager"
HOMEPAGE="http://tony.maro.net/mod.php?mod=userpage&page_id=4"
SRC_URI="http://tony.maro.net/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
DEPEND="virtual/libc
virtual/x11"
RDEPEND=""
S="${WORKDIR}/${PN}"
src_compile() {
einfo "Nothing to compile"
}
src_install() {
dobin cbtracker || die
dohtml ${S}/help/*
dodir /usr/share/icons
mv ${S}/cbt_icon.xpm ${D}/usr/share/icons/
dodoc README
}
|