diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
commit | ed40676841e317a2aafa04c4c804bb6043864740 (patch) | |
tree | 91c5e4b12acc09eabb2b1234eb633aa78af224d2 /dev-libs/d0_blind_id | |
parent | dc106bfbeb980942a8490753d6883eb34b13ea12 (diff) |
repo cleanup...drop old ebuilds, drop ebuilds already in portage tree
Diffstat (limited to 'dev-libs/d0_blind_id')
-rw-r--r-- | dev-libs/d0_blind_id/d0_blind_id-9999.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-libs/d0_blind_id/d0_blind_id-9999.ebuild b/dev-libs/d0_blind_id/d0_blind_id-9999.ebuild deleted file mode 100644 index 4dac682b..00000000 --- a/dev-libs/d0_blind_id/d0_blind_id-9999.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=4 - -EGIT_REPO_URI="git://git.xonotic.org/xonotic/${PN}.git" - -[[ ${PV} == *9999 ]] && SCM="autotools git-2" -inherit base ${SCM} -unset SCM - -DESCRIPTION="Blind-ID library for user identification using RSA blind signatures" -HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+crypt openssl static-libs" - -RDEPEND=" - !openssl? ( dev-libs/gmp ) - openssl? ( dev-libs/openssl ) -" -DEPEND="${RDEPEND} - dev-util/pkgconfig -" - -pkg_setup() { - use crypt || ewarn "You will have no encryption, only authentication." - use openssl && ewarn "OpenSSL is for Mac OS X users only, GMP is faster." -} - -src_prepare() { - base_src_prepare - [[ ${PV} == *9999 ]] && eautoreconf -} - -src_configure() { - econf \ - $(use_enable crypt rijndael) \ - $(use_with openssl) \ - $(use_enable static-libs static) -} - -src_install() { - default - - dodoc d0_blind_id.txt -} |