diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-11-22 21:58:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-11-22 21:58:13 +0000 |
commit | af6db6334cf95a11f977725e3fc25f755914a5f4 (patch) | |
tree | ba440d13a1adb4fa42ea13c112e7d33783ec6ca0 /app-crypt | |
parent | media-gfx/nvidia-cg-toolkit: Fix installation of examples, #355163 (diff) | |
download | gentoo-2-af6db6334cf95a11f977725e3fc25f755914a5f4.tar.gz gentoo-2-af6db6334cf95a11f977725e3fc25f755914a5f4.tar.bz2 gentoo-2-af6db6334cf95a11f977725e3fc25f755914a5f4.zip |
Initial import based on ebuild by Michael Palimaka #374541 by Bertrand Jacquin.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/osslsigncode/ChangeLog | 10 | ||||
-rw-r--r-- | app-crypt/osslsigncode/metadata.xml | 8 | ||||
-rw-r--r-- | app-crypt/osslsigncode/osslsigncode-1.4.ebuild | 23 |
3 files changed, 41 insertions, 0 deletions
diff --git a/app-crypt/osslsigncode/ChangeLog b/app-crypt/osslsigncode/ChangeLog new file mode 100644 index 000000000000..b402ef523f3b --- /dev/null +++ b/app-crypt/osslsigncode/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-crypt/osslsigncode +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/osslsigncode/ChangeLog,v 1.1 2012/11/22 21:58:13 vapier Exp $ + +*osslsigncode-1.4 (22 Nov 2012) + + 22 Nov 2012; Mike Frysinger <vapier@gentoo.org> +metadata.xml, + +osslsigncode-1.4.ebuild: + Initial import based on ebuild by Michael Palimaka #374541 by Bertrand + Jacquin. diff --git a/app-crypt/osslsigncode/metadata.xml b/app-crypt/osslsigncode/metadata.xml new file mode 100644 index 000000000000..0947421cbd38 --- /dev/null +++ b/app-crypt/osslsigncode/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>vapier@gentoo.org</email> + <description>do whatever</description> +</maintainer> +</pkgmetadata> diff --git a/app-crypt/osslsigncode/osslsigncode-1.4.ebuild b/app-crypt/osslsigncode/osslsigncode-1.4.ebuild new file mode 100644 index 000000000000..49af7bdf61a1 --- /dev/null +++ b/app-crypt/osslsigncode/osslsigncode-1.4.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/osslsigncode/osslsigncode-1.4.ebuild,v 1.1 2012/11/22 21:58:13 vapier Exp $ + +EAPI="4" + +DESCRIPTION="Platform-independent tool for Authenticode signing of EXE/CAB files" +HOMEPAGE="https://sourceforge.net/projects/osslsigncode" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="curl" + +RDEPEND="dev-libs/openssl + curl? ( net-misc/curl )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + econf $(use_with curl) +} |