diff options
author | Hanno Boeck <hanno@gentoo.org> | 2003-07-08 14:48:30 +0000 |
---|---|---|
committer | Hanno Boeck <hanno@gentoo.org> | 2003-07-08 14:48:30 +0000 |
commit | 7119af5850246441a7f72e30ce5d4b641c6b01ea (patch) | |
tree | 62c9d066f15d00e9f8b3989a49b8b58f2a76284b /net-libs/openhbci-plugin-ddvcard | |
parent | *** empty log message *** (diff) | |
download | historical-7119af5850246441a7f72e30ce5d4b641c6b01ea.tar.gz historical-7119af5850246441a7f72e30ce5d4b641c6b01ea.tar.bz2 historical-7119af5850246441a7f72e30ce5d4b641c6b01ea.zip |
added ebuild for openhbci-plugin-ddvcard
Diffstat (limited to 'net-libs/openhbci-plugin-ddvcard')
4 files changed, 38 insertions, 0 deletions
diff --git a/net-libs/openhbci-plugin-ddvcard/ChangeLog b/net-libs/openhbci-plugin-ddvcard/ChangeLog new file mode 100644 index 000000000000..db14b06a1285 --- /dev/null +++ b/net-libs/openhbci-plugin-ddvcard/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-libs/openhbci-plugin-ddvcard +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/openhbci-plugin-ddvcard/ChangeLog,v 1.1 2003/07/08 14:48:17 hanno Exp $ + +*openhbci-plugin-ddvcard-0.3 (08 Jul 2003) + + 08 Jul 2003; Hanno Boeck <hanno@gentoo.org> + openhbci-plugin-ddvcard-0.3.ebuild: + Plugin to use DDV cards with openhbci. + diff --git a/net-libs/openhbci-plugin-ddvcard/Manifest b/net-libs/openhbci-plugin-ddvcard/Manifest new file mode 100644 index 000000000000..d84dadbe823b --- /dev/null +++ b/net-libs/openhbci-plugin-ddvcard/Manifest @@ -0,0 +1,3 @@ +MD5 2b27eb82b28aaf83a696e600bf1e52dd openhbci-plugin-ddvcard-0.3.ebuild 631 +MD5 b9571dc727336953b0e7a8f424b739c8 ChangeLog 415 +MD5 ce8172834d26e251fc12906320e78725 files/digest-openhbci-plugin-ddvcard-0.3 79 diff --git a/net-libs/openhbci-plugin-ddvcard/files/digest-openhbci-plugin-ddvcard-0.3 b/net-libs/openhbci-plugin-ddvcard/files/digest-openhbci-plugin-ddvcard-0.3 new file mode 100644 index 000000000000..0058aae7e3f1 --- /dev/null +++ b/net-libs/openhbci-plugin-ddvcard/files/digest-openhbci-plugin-ddvcard-0.3 @@ -0,0 +1 @@ +MD5 02885083f6414b37b6b6bf646653bcb6 openhbci-plugin-ddvcard-0.3.tar.gz 233474 diff --git a/net-libs/openhbci-plugin-ddvcard/openhbci-plugin-ddvcard-0.3.ebuild b/net-libs/openhbci-plugin-ddvcard/openhbci-plugin-ddvcard-0.3.ebuild new file mode 100644 index 000000000000..65b66886e4d1 --- /dev/null +++ b/net-libs/openhbci-plugin-ddvcard/openhbci-plugin-ddvcard-0.3.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/openhbci-plugin-ddvcard/openhbci-plugin-ddvcard-0.3.ebuild,v 1.1 2003/07/08 14:48:17 hanno Exp $ + +DESCRIPTION="Plugin to use DDV cards with openhbci." +HOMEPAGE="http://openhbci.sourceforge.net/" +SRC_URI="mirror://sourceforge/openhbci/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="net-libs/openhbci" + +src_compile() { + econf --with-chipcard=/usr || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS README +} |