diff options
author | Ulrich Müller <ulm@gentoo.org> | 2012-10-01 20:08:36 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2012-10-01 20:08:36 +0000 |
commit | 2f6050ac6088cb8598d6e0f9e18d1d197f8bd32e (patch) | |
tree | 6c2e8c4708bf0db2bc4d8c958b9876011c34e860 /app-admin/passook | |
parent | Don't hardcore ar, but get AR and ARFLAGS from configure, bug 436758. (diff) | |
download | gentoo-2-2f6050ac6088cb8598d6e0f9e18d1d197f8bd32e.tar.gz gentoo-2-2f6050ac6088cb8598d6e0f9e18d1d197f8bd32e.tar.bz2 gentoo-2-2f6050ac6088cb8598d6e0f9e18d1d197f8bd32e.zip |
New snapshot from upstream git repo. License is GPL-3+ now, bug 436178.
(Portage version: 2.1.11.23/cvs/Linux x86_64)
Diffstat (limited to 'app-admin/passook')
-rw-r--r-- | app-admin/passook/ChangeLog | 10 | ||||
-rw-r--r-- | app-admin/passook/passook-1.0.0.ebuild | 6 | ||||
-rw-r--r-- | app-admin/passook/passook-20121001.ebuild | 31 |
3 files changed, 42 insertions, 5 deletions
diff --git a/app-admin/passook/ChangeLog b/app-admin/passook/ChangeLog index 6caabc0301e3..1252496680dd 100644 --- a/app-admin/passook/ChangeLog +++ b/app-admin/passook/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-admin/passook -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/passook/ChangeLog,v 1.15 2010/04/06 05:54:22 abcd Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/passook/ChangeLog,v 1.16 2012/10/01 20:08:36 ulm Exp $ + +*passook-20121001 (01 Oct 2012) + + 01 Oct 2012; Ulrich Müller <ulm@gentoo.org> passook-1.0.0.ebuild, + +passook-20121001.ebuild: + New snapshot from upstream git repo. License is GPL-3+ now, bug 436178. 06 Apr 2010; Jonathan Callen <abcd@gentoo.org> passook-1.0.0.ebuild, -files/passook.diff, +files/passook.patch: diff --git a/app-admin/passook/passook-1.0.0.ebuild b/app-admin/passook/passook-1.0.0.ebuild index bb86ff1f92f3..661e167ae79b 100644 --- a/app-admin/passook/passook-1.0.0.ebuild +++ b/app-admin/passook/passook-1.0.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/passook/passook-1.0.0.ebuild,v 1.24 2010/04/12 18:17:04 gmsoft Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/passook/passook-1.0.0.ebuild,v 1.25 2012/10/01 20:08:36 ulm Exp $ EAPI="3" @@ -11,7 +11,7 @@ DESCRIPTION="Password generator capable of generating pronounceable and/or secur SRC_URI="http://mackers.com/projects/passook/${PN}.tar.gz" HOMEPAGE="http://mackers.com/misc/scripts/passook/" -LICENSE="as-is" +LICENSE="GPL-3+" SLOT="0" KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" diff --git a/app-admin/passook/passook-20121001.ebuild b/app-admin/passook/passook-20121001.ebuild new file mode 100644 index 000000000000..c72fd369efe5 --- /dev/null +++ b/app-admin/passook/passook-20121001.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/passook/passook-20121001.ebuild,v 1.1 2012/10/01 20:08:36 ulm Exp $ + +EAPI=4 + +inherit eutils prefix + +DESCRIPTION="Password generator capable of generating pronounceable and/or secure passwords" +HOMEPAGE="http://mackers.com/misc/scripts/passook/" +# snapshot of git://github.com/mackers/passook.git +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND="dev-lang/perl + sys-apps/miscfiles" + +S="${WORKDIR}/${PN}" + +src_prepare() { + epatch "${FILESDIR}"/passook.patch + eprefixify passook +} + +src_install() { + dobin passook + dodoc README passook.cgi +} |