diff options
author | Caleb Tennis <caleb@gentoo.org> | 2003-08-12 19:05:14 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2003-08-12 19:05:14 +0000 |
commit | 2a9bf4a8ec2c180af0d977228e5a9c9c78536b10 (patch) | |
tree | 39d253a7a17d9547f9f8b0d0c1613117f6b2f8f4 /app-office/qhacc | |
parent | new unstable version (diff) | |
download | historical-2a9bf4a8ec2c180af0d977228e5a9c9c78536b10.tar.gz historical-2a9bf4a8ec2c180af0d977228e5a9c9c78536b10.tar.bz2 historical-2a9bf4a8ec2c180af0d977228e5a9c9c78536b10.zip |
Initial commit
Diffstat (limited to 'app-office/qhacc')
-rw-r--r-- | app-office/qhacc/Manifest | 6 | ||||
-rw-r--r-- | app-office/qhacc/metadata.xml | 5 | ||||
-rw-r--r-- | app-office/qhacc/qhacc-2.9.ebuild | 28 |
3 files changed, 36 insertions, 3 deletions
diff --git a/app-office/qhacc/Manifest b/app-office/qhacc/Manifest index b25d65775540..3ccbffd0f4f1 100644 --- a/app-office/qhacc/Manifest +++ b/app-office/qhacc/Manifest @@ -1,4 +1,4 @@ -MD5 c8ea2fe4846eb11f4d05f559904454bb qhacc-2.9.ebuild 678 -MD5 c8ea2fe4846eb11f4d05f559904454bb qhacc-2.8.ebuild 678 -MD5 27693bc7d2672c43e6bd6dabdeb1a7e7 files/digest-qhacc-2.8 61 +MD5 31d30c6cfc69d2c32ea4cb07468d4bce qhacc-2.9.ebuild 774 +MD5 cf4518374c33c62acd5b7ec1851d93cc ChangeLog 345 +MD5 512150b47a904b0240101e319856aab1 metadata.xml 156 MD5 f9848845170083de3cf3420f27f240c1 files/digest-qhacc-2.9 61 diff --git a/app-office/qhacc/metadata.xml b/app-office/qhacc/metadata.xml new file mode 100644 index 000000000000..01a5c2875e0d --- /dev/null +++ b/app-office/qhacc/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>qt</herd> +</pkgmetadata> diff --git a/app-office/qhacc/qhacc-2.9.ebuild b/app-office/qhacc/qhacc-2.9.ebuild new file mode 100644 index 000000000000..2df4629476a7 --- /dev/null +++ b/app-office/qhacc/qhacc-2.9.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2002 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.1 2003/08/12 19:05:03 caleb 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\"" +} |