blob: ef0c477c8793982204210aab4f2017f171f5f08f (
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-2007 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.7 2007/07/22 09:56:40 omp 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=""
RDEPEND="virtual/libc
x11-libs/libXi"
DEPEND=""
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
}
|