public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/engine_pkcs11: ChangeLog engine_pkcs11-0.1.6.ebuild
Date: Sat, 27 Jun 2009 20:47:01 +0000	[thread overview]
Message-ID: <E1MKend-0007dn-S2@stork.gentoo.org> (raw)

arfrever    09/06/27 20:47:01

  Modified:             ChangeLog
  Added:                engine_pkcs11-0.1.6.ebuild
  Log:
  Version bump.
  (Portage version: 13716-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 dev-libs/engine_pkcs11/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/engine_pkcs11/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/engine_pkcs11/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/engine_pkcs11/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/engine_pkcs11/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	31 Oct 2008 21:58:05 -0000	1.20
+++ ChangeLog	27 Jun 2009 20:47:01 -0000	1.21
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/engine_pkcs11
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/engine_pkcs11/ChangeLog,v 1.20 2008/10/31 21:58:05 gmsoft Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/engine_pkcs11/ChangeLog,v 1.21 2009/06/27 20:47:01 arfrever Exp $
+
+*engine_pkcs11-0.1.6 (27 Jun 2009)
+
+  27 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  +engine_pkcs11-0.1.6.ebuild,
+  +files/engine_pkcs11-0.1.6-fix_implicit_declaration.patch:
+  Version bump.
 
   31 Oct 2008; Guy Martin <gmsoft@gentoo.org> engine_pkcs11-0.1.4.ebuild:
   hppa stable, #198685



1.1                  dev-libs/engine_pkcs11/engine_pkcs11-0.1.6.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/engine_pkcs11/engine_pkcs11-0.1.6.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/engine_pkcs11/engine_pkcs11-0.1.6.ebuild?rev=1.1&content-type=text/plain

Index: engine_pkcs11-0.1.6.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/engine_pkcs11/engine_pkcs11-0.1.6.ebuild,v 1.1 2009/06/27 20:47:01 arfrever Exp $

EAPI="2"

DESCRIPTION="engine_pkcs11 is an implementation of an engine for OpenSSL"
HOMEPAGE="http://www.opensc-project.org/engine_pkcs11"

if [[ "${PV}" = "9999" ]]; then
	inherit autotools subversion
	ESVN_REPO_URI="http://www.opensc-project.org/svn/${PN}/trunk"
else
	inherit eutils
	SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz"
fi

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc"

DEPEND=">=dev-libs/libp11-0.2.5
	dev-libs/openssl"
RDEPEND="${DEPEND}"

if [[ "${PV}" = "9999" ]]; then
	DEPEND="${DEPEND}
		app-text/docbook-xsl-stylesheets
		dev-libs/libxslt"

	src_prepare() {
		eautoreconf
	}
else
	src_prepare() {
		epatch "${FILESDIR}/${P}-fix_implicit_declaration.patch"
	}
fi

src_configure() {
	econf \
		--docdir="/usr/share/doc/${PF}" \
		--htmldir="/usr/share/doc/${PF}/html" \
		$(use_enable doc)
}

src_install() {
	emake install DESTDIR="${D}" || die "emake install failed"
}






             reply	other threads:[~2009-06-27 20:47 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-27 20:47 Arfrever Frehtes Taifersar Arahesis (arfrever) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-07-31 14:43 [gentoo-commits] gentoo-x86 commit in dev-libs/engine_pkcs11: ChangeLog engine_pkcs11-0.1.6.ebuild Tony Vroon (chainsaw)
2009-08-02 20:56 Markus Meier (maekke)
2009-08-08 18:10 Jeroen Roovers (jer)
2009-08-09 14:03 Gysbert Wassenaar (nixnut)
2009-08-25 17:15 Raul Porcel (armin76)
2009-08-31  0:51 Brent Baude (ranger)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1MKend-0007dn-S2@stork.gentoo.org \
    --to=arfrever@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox