diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-23 16:38:55 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-10-23 16:38:55 +0000 |
commit | 299110d00717647bb974a311700af1bc6b51ffbc (patch) | |
tree | 94241e52021b519cee4970909486fcd4bb48aeac /sys-auth/libyubikey | |
parent | make_language_..._lines: declare more variables as local, these are used in T... (diff) | |
download | gentoo-2-299110d00717647bb974a311700af1bc6b51ffbc.tar.gz gentoo-2-299110d00717647bb974a311700af1bc6b51ffbc.tar.bz2 gentoo-2-299110d00717647bb974a311700af1bc6b51ffbc.zip |
Add libyubikey, proxy-maintained by Brant Gurganus. Ebuild and patch from bug #342103, updated for style and repoman.
(Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
Diffstat (limited to 'sys-auth/libyubikey')
-rw-r--r-- | sys-auth/libyubikey/ChangeLog | 11 | ||||
-rw-r--r-- | sys-auth/libyubikey/files/libyubikey-1.6-rpath.patch | 12 | ||||
-rw-r--r-- | sys-auth/libyubikey/libyubikey-1.6.ebuild | 26 | ||||
-rw-r--r-- | sys-auth/libyubikey/metadata.xml | 16 |
4 files changed, 65 insertions, 0 deletions
diff --git a/sys-auth/libyubikey/ChangeLog b/sys-auth/libyubikey/ChangeLog new file mode 100644 index 000000000000..77e21b750cb8 --- /dev/null +++ b/sys-auth/libyubikey/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for sys-auth/libyubikey +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libyubikey/ChangeLog,v 1.1 2010/10/23 16:38:54 flameeyes Exp $ + +*libyubikey-1.6 (23 Oct 2010) + + 23 Oct 2010; Diego E. Pettenò <flameeyes@gentoo.org> + +libyubikey-1.6.ebuild, +files/libyubikey-1.6-rpath.patch, +metadata.xml: + Add libyubikey, proxy-maintained by Brant Gurganus. Ebuild and patch from + bug #342103, updated for style and repoman. + diff --git a/sys-auth/libyubikey/files/libyubikey-1.6-rpath.patch b/sys-auth/libyubikey/files/libyubikey-1.6-rpath.patch new file mode 100644 index 000000000000..9c6432cc9e6e --- /dev/null +++ b/sys-auth/libyubikey/files/libyubikey-1.6-rpath.patch @@ -0,0 +1,12 @@ +Index: libyubikey-1.6/Makefile.am +=================================================================== +--- libyubikey-1.6.orig/Makefile.am ++++ libyubikey-1.6/Makefile.am +@@ -59,7 +59,6 @@ ykgenerate_LDADD = ./libyubikey.la + + # Self tests. + +-AM_LDFLAGS = -no-install + LDADD = libyubikey.la + + check_PROGRAMS = selftest diff --git a/sys-auth/libyubikey/libyubikey-1.6.ebuild b/sys-auth/libyubikey/libyubikey-1.6.ebuild new file mode 100644 index 000000000000..9c3c3fe21c03 --- /dev/null +++ b/sys-auth/libyubikey/libyubikey-1.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/libyubikey/libyubikey-1.6.ebuild,v 1.1 2010/10/23 16:38:54 flameeyes Exp $ + +EAPI=2 +inherit eutils autotools + +DESCRIPTION="Yubico C low-level library" +SRC_URI="http://yubico-c.googlecode.com/files/${P}.tar.gz" +HOMEPAGE="http://code.google.com/p/yubico-c/" + +KEYWORDS="~amd64" +SLOT="0" +LICENSE="BSD-2" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${P}-rpath.patch + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README THANKS || die + find "${D}" -name '*.la' -delete || die +} diff --git a/sys-auth/libyubikey/metadata.xml b/sys-auth/libyubikey/metadata.xml new file mode 100644 index 000000000000..e2fed4ff1680 --- /dev/null +++ b/sys-auth/libyubikey/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>brant@gurganus.name</email> + <name>Brant Gurganus</name> + <description>Proxied co-maintainer, assign bugs to him</description> + </maintainer> + + <maintainer> + <email>flameeyes@gentoo.org</email> + <name>Diego Elio Pettenò</name> + <description>Proxy maintainer, CC him on bugs</description> + </maintainer> +</pkgmetadata> |