From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-db/sqlcipher/Manifest | 1 + dev-db/sqlcipher/metadata.xml | 11 +++++++++ dev-db/sqlcipher/sqlcipher-3.3.0.ebuild | 41 +++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 dev-db/sqlcipher/Manifest create mode 100644 dev-db/sqlcipher/metadata.xml create mode 100644 dev-db/sqlcipher/sqlcipher-3.3.0.ebuild (limited to 'dev-db/sqlcipher') diff --git a/dev-db/sqlcipher/Manifest b/dev-db/sqlcipher/Manifest new file mode 100644 index 000000000000..0e21d044dc5b --- /dev/null +++ b/dev-db/sqlcipher/Manifest @@ -0,0 +1 @@ +DIST sqlcipher-3.3.0.tar.gz 10235736 SHA256 18f5df41a9806bc8eece00fde24c85107bd4807a5ae7057f9a6188de5d8fd82a SHA512 9f24fcd25811aabe36f5e27cdfc117a02ad3578a95691e9b3b7f41ee47ee0c176243c4f35a8415a17a3828d4534aae58a1097b75a950937706b10a79f2c92c81 WHIRLPOOL 1f4bdaf9ead7e2834d1efd2612c74eb91df2bbc17dfa4d404a72db4ef837b6b7a8430da522b6ec708f8873482c2de318a3cf65aebfdc53c200cad53a4ded9e6b diff --git a/dev-db/sqlcipher/metadata.xml b/dev-db/sqlcipher/metadata.xml new file mode 100644 index 000000000000..0b9695f30643 --- /dev/null +++ b/dev-db/sqlcipher/metadata.xml @@ -0,0 +1,11 @@ + + + + + pinkbyte@gentoo.org + Sergey Popov + + + sqlcipher/sqlcipher + + diff --git a/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild b/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild new file mode 100644 index 000000000000..5ecac204646e --- /dev/null +++ b/dev-db/sqlcipher/sqlcipher-3.3.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 +inherit autotools-multilib flag-o-matic + +DESCRIPTION="Full Database Encryption for SQLite" +HOMEPAGE="http://sqlcipher.net/" +SRC_URI="https://github.com/sqlcipher/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +IUSE="readline static-libs tcl" + +# Tcl is always needed by buildsystem +RDEPEND="dev-libs/openssl:0[${MULTILIB_USEDEP}] + readline? ( sys-libs/readline:0[${MULTILIB_USEDEP}] ) + tcl? ( dev-lang/tcl:=[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND} + dev-lang/tcl" + +src_prepare() { + append-cflags -DSQLITE_HAS_CODEC + + autotools-multilib_src_prepare +} + +src_configure() +{ + local myeconfargs=( + --enable-tempstore=yes + $(use_enable readline) + $(use_enable tcl) + ) + autotools-multilib_src_configure +} -- cgit v1.2.3-65-gdbad