# ChangeLog for sys-libs/libchipcard
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.94 2011/03/13 15:39:57 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.95 2011/08/21 19:59:58 hanno Exp $
+
+*libchipcard-5.0.2 (21 Aug 2011)
+
+ 21 Aug 2011; Hanno Boeck <hanno@gentoo.org> +libchipcard-5.0.2.ebuild:
+ Version bump, pcsc-patch has been applied upstream.
13 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> libchipcard-5.0.0.ebuild:
ppc stable wrt #355077
--- /dev/null
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/libchipcard-5.0.2.ebuild,v 1.1 2011/08/21 19:59:58 hanno Exp $
+
+EAPI=2
+
+DESCRIPTION="Libchipcard is a library for easy access to chip cards via chip card readers (terminals)."
+HOMEPAGE="http://www.aquamaniac.de/aqbanking/"
+SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=02&release=26&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc examples"
+
+RDEPEND=">=sys-libs/gwenhywfar-4.2.1
+ >=sys-apps/pcsc-lite-1.6.2
+ sys-libs/zlib
+ virtual/libintl"
+DEPEND="${RDEPEND}
+ sys-devel/gettext
+ doc? ( app-doc/doxygen )"
+
+src_configure() {
+ econf \
+ --disable-dependency-tracking \
+ --disable-static \
+ $(use_enable doc full-doc) \
+ --with-docpath=/usr/share/doc/${PF}/apidoc
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+
+ dodoc AUTHORS ChangeLog NEWS README TODO \
+ doc/{CERTIFICATES,CONFIG,IPCCOMMANDS}
+
+ if use examples; then
+ docinto tutorials
+ dodoc tutorials/*.{c,h,xml} tutorials/README
+ fi
+
+ find "${D}" -name '*.la' -exec rm -f {} +
+}