Skip to content

Commit

Permalink
app-crypt/stoken: packaging for bug 539660
Browse files Browse the repository at this point in the history
Package-Manager: portage-2.2.26
  • Loading branch information
prometheanfire committed Apr 7, 2016
1 parent 9cf6de9 commit 1c6d473
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
1 change: 1 addition & 0 deletions app-crypt/stoken/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST v0.90.tar.gz 116642 SHA256 45912c200e2bcf0d605ba4b1177fbc9191cfd0ca509dd33075fd7ba17ebd6dda SHA512 7c75a04ea6542a13d639bbb74523443e030559dcf65d181d07fc64277442500a8a18daf2351248a552e42daf815fe5d0079b5b559402522d45ac10ed7762c818 WHIRLPOOL cfeb2bf9ac173a5416a08c99405bdc2ea0feff10cb040ffe5e89fc95c570da369d85fc5679fdedcdb017fdfcc89374dfd8544f519b6df587cad7b4e7bc113f8e
11 changes: 11 additions & 0 deletions app-crypt/stoken/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>[email protected]</email>
<name>Matthew Thode</name>
</maintainer>
<longdescription lang="en">
stoken is an open source tokencode generator compatible with RSA SecurID 128-bit (AES) tokens. It is a hobbyist project, not affiliated with or endorsed by RSA Security.
</longdescription>
</pkgmetadata>
37 changes: 37 additions & 0 deletions app-crypt/stoken/stoken-0.90.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="6"

inherit autotools

DESCRIPTION="stoken - Software Token for Linux/UNIX"
HOMEPAGE="http://stoken.sourceforge.net/"
SRC_URI="http://github.com/cernekee/stoken/archive/v${PV}.tar.gz"

LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk"

RDEPEND="gtk? ( x11-libs/gtk+:2 )"
DEPEND="${RDEPEND}"

src_prepare() {
eautoreconf
eapply_user
}

src_configure() {
econf $(use_with gtk)
}

src_install() {
default
dodoc CHANGES COPYING.LIB README.md TODO
doman stoken.1
if use gtk ; then
doman stoken-gui.1
fi
}

0 comments on commit 1c6d473

Please sign in to comment.