diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-09-05 13:10:33 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-09-05 13:10:33 +0000 |
commit | 442b4a76ad180d9e6f0eea8bd3402cbac8018638 (patch) | |
tree | f4f79758b05845e670a7ffc43818e70374492bd6 /app-admin | |
parent | initial import (diff) | |
download | historical-442b4a76ad180d9e6f0eea8bd3402cbac8018638.tar.gz historical-442b4a76ad180d9e6f0eea8bd3402cbac8018638.tar.bz2 historical-442b4a76ad180d9e6f0eea8bd3402cbac8018638.zip |
initial import
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/otpcalc/Manifest | 4 | ||||
-rw-r--r-- | app-admin/otpcalc/files/digest-otpcalc-0.96 | 1 | ||||
-rw-r--r-- | app-admin/otpcalc/metadata.xml | 12 | ||||
-rw-r--r-- | app-admin/otpcalc/otpcalc-0.96.ebuild | 25 |
4 files changed, 41 insertions, 1 deletions
diff --git a/app-admin/otpcalc/Manifest b/app-admin/otpcalc/Manifest index 553d933a9ced..446f68add9e2 100644 --- a/app-admin/otpcalc/Manifest +++ b/app-admin/otpcalc/Manifest @@ -1,2 +1,4 @@ -MD5 e08c9280fb199032af68044138161372 otpcalc-0.96.ebuild 552 +MD5 f419d42e9fc2a8554202d01c5ebafc8a otpcalc-0.96.ebuild 651 +MD5 0141b8f2188f86fe0577b0f480e1d49a ChangeLog 333 +MD5 78714bd1cdeb6709df0a6dcc4c5347ce metadata.xml 410 MD5 1ce297d1a90353ea4e3ee49a9d21be6d files/digest-otpcalc-0.96 64 diff --git a/app-admin/otpcalc/files/digest-otpcalc-0.96 b/app-admin/otpcalc/files/digest-otpcalc-0.96 new file mode 100644 index 000000000000..deaf47e674a5 --- /dev/null +++ b/app-admin/otpcalc/files/digest-otpcalc-0.96 @@ -0,0 +1 @@ +MD5 49b1b44edfa421e94152adb4d7a8357c otpCalc-0.96.tar.bz2 85526 diff --git a/app-admin/otpcalc/metadata.xml b/app-admin/otpcalc/metadata.xml new file mode 100644 index 000000000000..06a42a5d9ee5 --- /dev/null +++ b/app-admin/otpcalc/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>taviso@gentoo.org</email> + <name>Tavis Ormandy</name> +</maintainer> +<longdescription> +otpCalc is an RFC2289 and RFC1760 compliant one time password calculator, written to use the GTK+ library for screen I/O. +</longdescription> +</pkgmetadata> diff --git a/app-admin/otpcalc/otpcalc-0.96.ebuild b/app-admin/otpcalc/otpcalc-0.96.ebuild new file mode 100644 index 000000000000..25cf2fc7317c --- /dev/null +++ b/app-admin/otpcalc/otpcalc-0.96.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/otpcalc/otpcalc-0.96.ebuild,v 1.1 2003/09/05 13:10:29 taviso Exp $ + +DESCRIPTION="A One Time Password and S/Key calculator for X" +HOMEPAGE="http://killa.net/infosec/otpCalc/" +SRC_URI="http://killa.net/infosec/otpCalc/otpCalc-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-*" + +IUSE="" +RDEPEND="=x11-libs/gtk+-1.2* + virtual/x11 + virtual/glibc" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${P} + +src_install() { + sed -e "s/VERSION/${PV}/g" otpCalc.man > otpCalc.1 + doman otpCalc.1 + dobin otpCalc +} |