blob: aa4e5301d01b04ef8c128098769622d001190ce2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/qhacc/qhacc-2.9.ebuild,v 1.3 2003/09/08 07:23:08 msterret Exp $
inherit kde-base
need-qt 3
DESCRIPTION="Personal Finance for QT"
HOMEPAGE="http://qhacc.sourceforge.net"
SRC_URI="mirror://sourceforge/sourceforge/qhacc/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
src_compile() {
./configure --with-qhacc-includes=${S}/src || die
}
pkg_postinst() {
mkdir /etc/qhacc
cp -R $S/contrib/easysetup/* /etc/qhacc/
einfo "Copy the files in /etc/qhacc to ~/.qhacc,
You have to run this program with the command:
qhacc -f ~/.qhacc/
I prefer to put this in my .bashrc
alias qhacc=\"qhacc -f ~/.qhacc\""
}
|