public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/xmw:master commit in: app-crypt/tcplay/
@ 2012-08-28 12:35 Michael Weber
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Weber @ 2012-08-28 12:35 UTC (permalink / raw
  To: gentoo-commits

commit:     6fcdabb157099b0b0fad3e841b9ef64f8173f0c5
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 28 12:35:06 2012 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Aug 28 12:35:06 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=6fcdabb1

Initial import

(Portage version: 2.1.11.12/git/Linux x86_64, signed Manifest commit with key 62EEF090)

---
 app-crypt/tcplay/Manifest           |   11 +++++++++
 app-crypt/tcplay/metadata.xml       |    9 +++++++
 app-crypt/tcplay/tcplay-0.10.ebuild |   40 +++++++++++++++++++++++++++++++++++
 app-crypt/tcplay/tcplay-9999.ebuild |   40 +++++++++++++++++++++++++++++++++++
 4 files changed, 100 insertions(+), 0 deletions(-)

diff --git a/app-crypt/tcplay/Manifest b/app-crypt/tcplay/Manifest
new file mode 100644
index 0000000..a535b7a
--- /dev/null
+++ b/app-crypt/tcplay/Manifest
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA256
+
+DIST tcplay-0.10.tar.gz 31973 SHA256 4ec6a43587fbccf9f97a54a5f7bd074548ef589f978b18b101c887920a8a401f SHA512 eaaa3de7e87c61e19371131c43632af9cdb5158443376c82cf6f1765289bc9fd7625944c51ba7ddb42d32a4c837322e920e0c9d0f014c77a293c7a03e2919ca4 WHIRLPOOL 6e848fc660fd2fe239c1b0d06830d9ae52657169e1a00656c4a66a42caf376f943b247b4f242b3842c44dfc78ab04f4f46f3897be2dd35e6cdcb2302c205ee25
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.19 (GNU/Linux)
+
+iF4EAREIAAYFAlA8uvoACgkQknrdDGLu8JDZ7QEAgXLib5fsTGFhAzoCi9Cx0v6m
+9jqX5KGLWvL40LL5rV8A+QGBoudkX7d2cPe6XeCSPwDb1wH6tTCtpbgPGd4Wp6oa
+=b8ic
+-----END PGP SIGNATURE-----

diff --git a/app-crypt/tcplay/metadata.xml b/app-crypt/tcplay/metadata.xml
new file mode 100644
index 0000000..59acc2c
--- /dev/null
+++ b/app-crypt/tcplay/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer>
+<email>xmw@gentoo.org</email>
+<name>Michael Weber</name>
+</maintainer>
+</pkgmetadata>
+

diff --git a/app-crypt/tcplay/tcplay-0.10.ebuild b/app-crypt/tcplay/tcplay-0.10.ebuild
new file mode 100644
index 0000000..67cefc9
--- /dev/null
+++ b/app-crypt/tcplay/tcplay-0.10.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit toolchain-funcs vcs-snapshot
+
+DESCRIPTION="Free and simple TrueCrypt Implementation based on dm-crypt"
+HOMEPAGE="https://github.com/bwalex/tc-play"
+SRC_URI="https://github.com/bwalex/tc-play/tarball/v0.10 -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="dev-libs/libgcrypt
+	sys-apps/util-linux
+	sys-fs/lvm2"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	sed -e '/CFLAGS+= -O3/d' \
+		-e '/$(CC)/s:$: $(LDFLAGS):' \
+		-i Makefile || die
+}
+
+src_compile() {
+	tc-export CC
+	emake SYSTEM=linux PBKDF_BACKEND=gcrypt program
+	#emake ${myconf} lib
+}
+
+src_install() {
+	dobin ${PN}
+	doman ${PN}.8
+	#doman ${PN}.3
+	dodoc README
+}

diff --git a/app-crypt/tcplay/tcplay-9999.ebuild b/app-crypt/tcplay/tcplay-9999.ebuild
new file mode 100644
index 0000000..292c1fd
--- /dev/null
+++ b/app-crypt/tcplay/tcplay-9999.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit git-2 toolchain-funcs
+
+DESCRIPTION="Free and simple TrueCrypt Implementation based on dm-crypt"
+HOMEPAGE="https://github.com/bwalex/tc-play"
+EGIT_REPO_URI="https://github.com/bwalex/tc-play.git"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+RDEPEND="dev-libs/libgcrypt
+	sys-apps/util-linux
+	sys-fs/lvm2"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	sed -e '/CFLAGS+= -O3/d' \
+		-e '/$(CC)/s:$: $(LDFLAGS):' \
+		-i Makefile || die
+}
+
+src_compile() {
+	tc-export CC
+	emake SYSTEM=linux PBKDF_BACKEND=gcrypt program
+	#emake ${myconf} lib
+}
+
+src_install() {
+	dobin ${PN}
+	doman ${PN}.8
+	#doman ${PN}.3
+	dodoc README
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] dev/xmw:master commit in: app-crypt/tcplay/
@ 2012-08-28 17:07 Michael Weber
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Weber @ 2012-08-28 17:07 UTC (permalink / raw
  To: gentoo-commits

commit:     78d0aff4ad10ddf34e92353751784398817a1b07
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 28 17:06:07 2012 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Aug 28 17:06:07 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=78d0aff4

Upstream fixed library compilation.

(Portage version: 2.1.11.12/git/Linux x86_64, signed Manifest commit with key 62EEF090)

---
 app-crypt/tcplay/tcplay-9999.ebuild |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/app-crypt/tcplay/tcplay-9999.ebuild b/app-crypt/tcplay/tcplay-9999.ebuild
index 292c1fd..2ba7b4e 100644
--- a/app-crypt/tcplay/tcplay-9999.ebuild
+++ b/app-crypt/tcplay/tcplay-9999.ebuild
@@ -28,13 +28,11 @@ src_prepare() {
 
 src_compile() {
 	tc-export CC
-	emake SYSTEM=linux PBKDF_BACKEND=gcrypt program
-	#emake ${myconf} lib
+	emake SYSTEM=linux PBKDF_BACKEND=gcrypt program lib
 }
 
 src_install() {
 	dobin ${PN}
-	doman ${PN}.8
-	#doman ${PN}.3
-	dodoc README
+	doman ${PN}.{3,8}
+	dodoc README.md
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] dev/xmw:master commit in: app-crypt/tcplay/
@ 2012-08-28 17:26 Michael Weber
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Weber @ 2012-08-28 17:26 UTC (permalink / raw
  To: gentoo-commits

commit:     2e3224c9c7f48b5ad097bdcd6ca56096e3a369ab
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 28 17:25:43 2012 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Aug 28 17:25:43 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/xmw.git;a=commit;h=2e3224c9

Fix library installation.

(Portage version: 2.1.11.12/git/Linux x86_64, signed Manifest commit with key 62EEF090)

---
 app-crypt/tcplay/tcplay-0.10-r1.ebuild |    1 +
 app-crypt/tcplay/tcplay-9999.ebuild    |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/app-crypt/tcplay/tcplay-0.10-r1.ebuild b/app-crypt/tcplay/tcplay-0.10-r1.ebuild
index 65357e5..0a93304 100644
--- a/app-crypt/tcplay/tcplay-0.10-r1.ebuild
+++ b/app-crypt/tcplay/tcplay-0.10-r1.ebuild
@@ -34,6 +34,7 @@ src_compile() {
 
 src_install() {
 	dobin ${PN}
+	dolib lib${PN}.so
 	doman ${PN}.{3,8}
 	dodoc README
 }

diff --git a/app-crypt/tcplay/tcplay-9999.ebuild b/app-crypt/tcplay/tcplay-9999.ebuild
index 2ba7b4e..8e6c8c4 100644
--- a/app-crypt/tcplay/tcplay-9999.ebuild
+++ b/app-crypt/tcplay/tcplay-9999.ebuild
@@ -33,6 +33,7 @@ src_compile() {
 
 src_install() {
 	dobin ${PN}
+	dolib lib${PN}.so
 	doman ${PN}.{3,8}
 	dodoc README.md
 }


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-08-28 17:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-28 12:35 [gentoo-commits] dev/xmw:master commit in: app-crypt/tcplay/ Michael Weber
  -- strict thread matches above, loose matches on Subject: below --
2012-08-28 17:07 Michael Weber
2012-08-28 17:26 Michael Weber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox