summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Weiler <pylon@gentoo.org>2008-03-30 09:22:44 +0000
committerLars Weiler <pylon@gentoo.org>2008-03-30 09:22:44 +0000
commiteeec97228baead8c27d588a20b49a1fb32562a68 (patch)
tree8e9321050d3bfe950a2c5edd5874354d7bc93884 /net-libs
parentUpdate to Linux 2.6.24.4. Fix mixer controls for Fujitsu Lifebook E8410 sound... (diff)
downloadgentoo-2-eeec97228baead8c27d588a20b49a1fb32562a68.tar.gz
gentoo-2-eeec97228baead8c27d588a20b49a1fb32562a68.tar.bz2
gentoo-2-eeec97228baead8c27d588a20b49a1fb32562a68.zip
QA corrections; cleanup.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/xyssl/ChangeLog8
-rw-r--r--net-libs/xyssl/xyssl-0.7.ebuild58
-rw-r--r--net-libs/xyssl/xyssl-0.8.ebuild58
-rw-r--r--net-libs/xyssl/xyssl-0.9.ebuild8
4 files changed, 10 insertions, 122 deletions
diff --git a/net-libs/xyssl/ChangeLog b/net-libs/xyssl/ChangeLog
index 75db4ad98b96..67ef34a48db8 100644
--- a/net-libs/xyssl/ChangeLog
+++ b/net-libs/xyssl/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-libs/xyssl
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/xyssl/ChangeLog,v 1.3 2007/10/20 23:36:05 pylon Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-libs/xyssl/ChangeLog,v 1.4 2008/03/30 09:22:44 pylon Exp $
+
+ 30 Mar 2008; Lars Weiler <pylon@gentoo.org> -xyssl-0.7.ebuild,
+ -xyssl-0.8.ebuild, xyssl-0.9.ebuild:
+ QA corrections; cleanup.
20 Oct 2007; Lars Weiler <pylon@gentoo.org> xyssl-0.8.ebuild:
Keyworded ~ppc.
diff --git a/net-libs/xyssl/xyssl-0.7.ebuild b/net-libs/xyssl/xyssl-0.7.ebuild
deleted file mode 100644
index c8511212f49c..000000000000
--- a/net-libs/xyssl/xyssl-0.7.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/xyssl/xyssl-0.7.ebuild,v 1.1 2007/07/13 18:31:09 pylon Exp $
-
-DESCRIPTION="Cryptographic library for embedded systems"
-HOMEPAGE="http://xyssl.org/"
-SRC_URI="http://xyssl.org/code/download/${P}.tgz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~sparc ~x86"
-IUSE="examples sse2"
-
-DEPEND="virtual/libc"
-
-src_compile() {
- cd "${S}/library"
- if use sse2 ; then
- sed -i '15iCFLAGS += -DHAVE_SSE2 -fPIC' Makefile
- else
- sed -i '15iCFLAGS += -fPIC' Makefile
- fi
- emake libxyssl.a || die "emake failed"
- emake libxyssl.so || die "emake failed"
-
- if use examples ; then
- cd "${S}/programs"
- emake all
- fi
-}
-
-src_test() {
- cd "${S}/programs"
- emake test/selftest
- ./test/selftest || die "selftest failed"
-}
-
-src_install() {
- dodir /usr/include/xyssl
- insinto /usr/include/xyssl
- doins include/xyssl/*.h
- dolib.so library/libxyssl.so
- dolib.a library/libxyssl.a
-
- if use examples ; then
- for p in programs/*/* ; do
- if [ -x ${p} ] ; then
- f=xyssl_`basename ${p}`
- newbin ${p} ${f}
- fi
- done
- for e in aes hash pkey ssl test ; do
- docinto ${e}
- dodoc programs/${e}/*.c
- dodoc programs/${e}/*.txt
- done
- fi
-}
diff --git a/net-libs/xyssl/xyssl-0.8.ebuild b/net-libs/xyssl/xyssl-0.8.ebuild
deleted file mode 100644
index 3089a2774406..000000000000
--- a/net-libs/xyssl/xyssl-0.8.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/xyssl/xyssl-0.8.ebuild,v 1.2 2007/10/20 23:36:05 pylon Exp $
-
-DESCRIPTION="Cryptographic library for embedded systems"
-HOMEPAGE="http://xyssl.org/"
-SRC_URI="http://xyssl.org/code/download/${P}.tgz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~ppc ~sparc ~x86"
-IUSE="examples sse2"
-
-DEPEND="virtual/libc"
-
-src_compile() {
- cd "${S}/library"
- if use sse2 ; then
- sed -i '15iCFLAGS += -DHAVE_SSE2 -fPIC' Makefile
- else
- sed -i '15iCFLAGS += -fPIC' Makefile
- fi
- emake libxyssl.a || die "emake failed"
- emake libxyssl.so || die "emake failed"
-
- if use examples ; then
- cd "${S}"/programs
- emake all
- fi
-}
-
-src_test() {
- cd "${S}"/programs
- emake test/selftest
- ./test/selftest || die "selftest failed"
-}
-
-src_install() {
- dodir /usr/include/xyssl
- insinto /usr/include/xyssl
- doins include/xyssl/*.h
- dolib.so library/libxyssl.so
- dolib.a library/libxyssl.a
-
- if use examples ; then
- for p in programs/*/* ; do
- if [ -x "${p}" ] ; then
- f=xyssl_`basename "${p}"`
- newbin "${p}" "${f}"
- fi
- done
- for e in aes hash pkey ssl test ; do
- docinto "${e}"
- dodoc programs/"${e}"/*.c
- dodoc programs/"${e}"/*.txt
- done
- fi
-}
diff --git a/net-libs/xyssl/xyssl-0.9.ebuild b/net-libs/xyssl/xyssl-0.9.ebuild
index a87c21044201..49bfd33daec6 100644
--- a/net-libs/xyssl/xyssl-0.9.ebuild
+++ b/net-libs/xyssl/xyssl-0.9.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/xyssl/xyssl-0.9.ebuild,v 1.1 2008/03/29 23:35:06 pylon Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/xyssl/xyssl-0.9.ebuild,v 1.2 2008/03/30 09:22:44 pylon Exp $
DESCRIPTION="Cryptographic library for embedded systems"
HOMEPAGE="http://xyssl.org/"
@@ -25,13 +25,13 @@ src_compile() {
if use examples ; then
cd "${S}"/programs
- emake all
+ emake all || die "emake failed"
fi
}
src_test() {
cd "${S}"/programs
- emake test/selftest
+ emake test/selftest || die "emake selftest failed"
./test/selftest || die "selftest failed"
}