old
authorMike Frysinger <vapier@gentoo.org>
Sun, 25 Mar 2007 17:02:01 +0000 (17:02 +0000)
committerMike Frysinger <vapier@gentoo.org>
Sun, 25 Mar 2007 17:02:01 +0000 (17:02 +0000)
dev-libs/matrixssl/files/digest-matrixssl-1.2.4 [deleted file]
dev-libs/matrixssl/files/digest-matrixssl-1.7.3 [deleted file]
dev-libs/matrixssl/files/matrixssl-1.7.3-build.patch [deleted file]
dev-libs/matrixssl/matrixssl-1.2.4.ebuild [deleted file]
dev-libs/matrixssl/matrixssl-1.7.3.ebuild [deleted file]

diff --git a/dev-libs/matrixssl/files/digest-matrixssl-1.2.4 b/dev-libs/matrixssl/files/digest-matrixssl-1.2.4
deleted file mode 100644 (file)
index 816b2ce..0000000
+++ /dev/null
@@ -1 +0,0 @@
-MD5 771c1489488e62668d673478311d63ca matrixssl-1-2-4.tar.gz 333282
diff --git a/dev-libs/matrixssl/files/digest-matrixssl-1.7.3 b/dev-libs/matrixssl/files/digest-matrixssl-1.7.3
deleted file mode 100644 (file)
index 7e85f22..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 b80faff3e389000b9a161dda4812112d matrixssl-1-7-3-open.tar.gz 346585
-RMD160 9fe0061ceb9c03a51335fd96b41416df8fd68949 matrixssl-1-7-3-open.tar.gz 346585
-SHA256 66b60065eb1cc3fc6d98cb161b50ceef4eb48bdccdc919b6773d9bf5b6e44b28 matrixssl-1-7-3-open.tar.gz 346585
diff --git a/dev-libs/matrixssl/files/matrixssl-1.7.3-build.patch b/dev-libs/matrixssl/files/matrixssl-1.7.3-build.patch
deleted file mode 100644 (file)
index d990a2e..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-Respect host build env
-
---- matrixssl/src/Makefile
-+++ matrixssl/src/Makefile
-@@ -15,7 +15,7 @@
- E       =
- LIBRARY       = libmatrixssl$(SO)
--STATIC        = libmatrixsslstatic$(A)
-+STATIC        = libmatrixssl$(A)
- OBJECTS       = \
-               cipherSuite$(O) \
-@@ -51,5 +51,6 @@
- else
- #DFLAGS       = -Os
--DFLAGS        = -O3
-+DFLAGS        := $(CFLAGS)
-+STRIP = test
- endif
-@@ -62,6 +63,6 @@
- #     Override variables for compilation on x86-64 (AMD64, Nacona, etc)
- #
--ifeq ($(shell uname -m),x86_64)
--DFLAGS  += -march=k8 -fPIC -DFP_64BIT -DTFM_X86_64 -DRDTSC
-+ifeq ($(findstring x86_64-,$(CHOST)),x86_64-)
-+DFLAGS  += -fPIC -DFP_64BIT -DTFM_X86_64 -DRDTSC
- endif
-@@ -69,17 +70,17 @@
- #     Compile options
- #
--SHARED        = -shared
-+SHARED        = -shared -Wl,-soname=$(LIBRARY)
- CFLAGS  = $(DFLAGS) -DLINUX -I./
--LDFLAGS = -lc -lpthread
-+LDFLAGS += -lc -lpthread
- #
- #     Override variables for compilation on Mac OS X (Darwin)
- #
--ifeq ($(shell uname),Darwin)
-+ifeq ($(findstring -darwin,$(CHOST)),-darwin)
- CC    = cc
- SO    = .dylib
- SHARED        = -dynamiclib
- CFLAGS += -DOSX -isystem -I/usr/include
--LDFLAGS = -flat_namespace -install_name @executable_path/../src/$(LIBRARY)
-+LDFLAGS += -flat_namespace -install_name @executable_path/../src/$(LIBRARY)
- STRIP = test
- endif
-@@ -122,6 +122,20 @@
-       $(RANLIB) $@
- #
-+# Install the package
-+#
-+DESTDIR =
-+PREFIX  = /usr
-+LIBDIR  = $(PREFIX)/lib
-+INCDIR  = $(PREFIX)/include
-+MKDIR   = mkdir -p
-+
-+install: $(LIBRARY) $(STATIC)
-+      $(MKDIR) $(DESTDIR)$(LIBDIR) $(DESTDIR)$(INCDIR)
-+      install -m 0644 $(LIBRARY) $(STATIC) $(DESTDIR)$(LIBDIR)
-+      install -m 0644 ../*.h $(DESTDIR)$(INCDIR)
-+
-+#
- #     Clean up all generated files
- #
- clean:
diff --git a/dev-libs/matrixssl/matrixssl-1.2.4.ebuild b/dev-libs/matrixssl/matrixssl-1.2.4.ebuild
deleted file mode 100644 (file)
index fcef87e..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/matrixssl/matrixssl-1.2.4.ebuild,v 1.1 2005/03/18 15:15:19 solar Exp $
-
-DESCRIPTION="embedded SSL implementation"
-HOMEPAGE="http://www.matrixssl.org/"
-SRC_URI="${PN}-${PV//./-}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="doc"
-RESTRICT="fetch"
-
-DEPEND="virtual/libc"
-
-S=${WORKDIR}/${PN}/src
-
-pkg_nofetch() {
-       einfo "You'll have to visit the website to download the file."
-       einfo "http://www.matrixssl.org/download.html"
-}
-
-src_compile() {
-       emake DFLAGS="${CFLAGS} -fPIC" || die
-}
-
-src_install() {
-       dolib.so libmatrixssl.so || die
-       cd ..
-       if use doc ; then
-               dodoc doc/*
-               docinto examples
-               dodoc examples/*
-       fi
-       insinto /usr/include
-       doins matrixSsl.h || die
-}
diff --git a/dev-libs/matrixssl/matrixssl-1.7.3.ebuild b/dev-libs/matrixssl/matrixssl-1.7.3.ebuild
deleted file mode 100644 (file)
index 98f67c1..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/matrixssl/matrixssl-1.7.3.ebuild,v 1.2 2006/01/31 01:28:15 vapier Exp $
-
-inherit eutils
-
-DESCRIPTION="embedded SSL implementation"
-HOMEPAGE="http://www.matrixssl.org/"
-SRC_URI="mirror://gentoo/${PN}-${PV//./-}-open.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-DEPEND=""
-
-S=${WORKDIR}/${PN}/src
-
-pkg_nofetch() {
-       einfo "You'll have to visit the website to download the file."
-       einfo "http://www.matrixssl.org/download.html"
-}
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-       epatch "${FILESDIR}"/${P}-build.patch
-}
-
-src_install() {
-       make install DESTDIR="${D}" || die
-       cd ..
-       if use doc ; then
-               dodoc doc/*
-               docinto examples
-               dodoc examples/*
-       fi
-}