summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2003-03-12 05:29:07 +0000
committerSeemant Kulleen <seemant@gentoo.org>2003-03-12 05:29:07 +0000
commit2079d7b051217faa35447d62e2e1873d1b2b71da (patch)
tree62b78f629d61f859c9603f987e0e86c7251c6bc3 /dev-libs
parentweird that repoman didn't catch the missing files dir and digest (diff)
downloadhistorical-2079d7b051217faa35447d62e2e1873d1b2b71da.tar.gz
historical-2079d7b051217faa35447d62e2e1873d1b2b71da.tar.bz2
historical-2079d7b051217faa35447d62e2e1873d1b2b71da.zip
removed crusty ebuilds
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/openssl/files/digest-openssl-0.9.6e1
-rw-r--r--dev-libs/openssl/files/digest-openssl-0.9.6g1
-rw-r--r--dev-libs/openssl/files/digest-openssl-0.9.6g-r11
-rw-r--r--dev-libs/openssl/files/digest-openssl-0.9.6h1
-rw-r--r--dev-libs/openssl/files/digest-openssl-0.9.71
-rw-r--r--dev-libs/openssl/openssl-0.9.6e.ebuild44
-rw-r--r--dev-libs/openssl/openssl-0.9.6g-r1.ebuild67
-rw-r--r--dev-libs/openssl/openssl-0.9.6g.ebuild60
-rw-r--r--dev-libs/openssl/openssl-0.9.6h.ebuild61
-rw-r--r--dev-libs/openssl/openssl-0.9.7.ebuild76
10 files changed, 0 insertions, 313 deletions
diff --git a/dev-libs/openssl/files/digest-openssl-0.9.6e b/dev-libs/openssl/files/digest-openssl-0.9.6e
deleted file mode 100644
index b83d5e35b6bb..000000000000
--- a/dev-libs/openssl/files/digest-openssl-0.9.6e
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2f57a28e6a2468c488d49bb4dd31f24a openssl-0.9.6e.tar.gz 2158566
diff --git a/dev-libs/openssl/files/digest-openssl-0.9.6g b/dev-libs/openssl/files/digest-openssl-0.9.6g
deleted file mode 100644
index 1df7dfe2913b..000000000000
--- a/dev-libs/openssl/files/digest-openssl-0.9.6g
+++ /dev/null
@@ -1 +0,0 @@
-MD5 515ed54165a55df83f4eb4e4e9078d3f openssl-0.9.6g.tar.gz 2170570
diff --git a/dev-libs/openssl/files/digest-openssl-0.9.6g-r1 b/dev-libs/openssl/files/digest-openssl-0.9.6g-r1
deleted file mode 100644
index 1df7dfe2913b..000000000000
--- a/dev-libs/openssl/files/digest-openssl-0.9.6g-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 515ed54165a55df83f4eb4e4e9078d3f openssl-0.9.6g.tar.gz 2170570
diff --git a/dev-libs/openssl/files/digest-openssl-0.9.6h b/dev-libs/openssl/files/digest-openssl-0.9.6h
deleted file mode 100644
index e2fb8ccc41c0..000000000000
--- a/dev-libs/openssl/files/digest-openssl-0.9.6h
+++ /dev/null
@@ -1 +0,0 @@
-MD5 1a0c2bee9f6b0af95ce65106462411f5 openssl-0.9.6h.tar.gz 2178314
diff --git a/dev-libs/openssl/files/digest-openssl-0.9.7 b/dev-libs/openssl/files/digest-openssl-0.9.7
deleted file mode 100644
index 3072e1633fe8..000000000000
--- a/dev-libs/openssl/files/digest-openssl-0.9.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 ef376d14205afcfb831cd3720f705d79 openssl-0.9.7.tar.gz 2768454
diff --git a/dev-libs/openssl/openssl-0.9.6e.ebuild b/dev-libs/openssl/openssl-0.9.6e.ebuild
deleted file mode 100644
index 8bffc74def10..000000000000
--- a/dev-libs/openssl/openssl-0.9.6e.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.6e.ebuild,v 1.9 2003/03/11 21:11:45 seemant Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
-SRC_URI="http://www.openssl.org/source/${P}.tar.gz"
-HOMEPAGE="http://www.openssl.org/"
-
-RDEPEND="virtual/glibc"
-DEPEND="${RDEPEND} >=dev-lang/perl-5"
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="x86 ppc sparc alpha"
-
-src_unpack() {
- unpack ${A} ; cd ${S}
- cp Configure Configure.orig
- sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" Configure.orig > Configure
-}
-
-src_compile() {
- ./config --prefix=/usr --openssldir=/usr/lib/ssl shared threads || die
- # i think parallel make has problems
- make all || die
-}
-
-src_install() {
- make INSTALL_PREFIX=${D} MANDIR=/usr/share/man install || die
- dodoc CHANGES* FAQ LICENSE NEWS README
- dodoc doc/*.txt
- dohtml doc/*
- insinto /usr/share/emacs/site-lisp
- doins doc/c-indentation.el
-
- # The man pages rand.3 and passwd.1 conflict with other packages
- # Rename them to ssl-* and also make a symlink from openssl-* to ssl-*
- cd ${D}/usr/share/man/man1
- mv passwd.1 ssl-passwd.1
- ln -sf ssl-passwd.1 openssl-passwd.1
- cd ${D}/usr/share/man/man3
- mv rand.3 ssl-rand.3
- ln -sf ssl-rand.3 openssl-rand.3
-}
diff --git a/dev-libs/openssl/openssl-0.9.6g-r1.ebuild b/dev-libs/openssl/openssl-0.9.6g-r1.ebuild
deleted file mode 100644
index a099f472a11b..000000000000
--- a/dev-libs/openssl/openssl-0.9.6g-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.6g-r1.ebuild,v 1.9 2003/03/11 21:11:45 seemant Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
-SRC_URI="http://www.openssl.org/source/${P}.tar.gz"
-HOMEPAGE="http://www.openssl.org/"
-
-RDEPEND="virtual/glibc"
-DEPEND="${RDEPEND} >=dev-lang/perl-5"
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~alpha ~sparc ~hppa ~mips"
-
-src_unpack() {
- unpack ${A} ; cd ${S}
-
- patch -p1 < ${FILESDIR}/${PF}-gentoo.diff
-
- if [ "${ARCH}" = "mips" ]
- then
- cd ${S}
- patch -p1 < ${FILESDIR}/openssl-0.9.6-mips.diff || die
- fi
-
- # many apps linking to openssl needs -fPIC
- if [ "${ARCH}" = "hppa" ]
- then
- CFLAGS="${CFLAGS} -fPIC"
- fi
-
-
- cp Configure Configure.orig
- sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" Configure.orig > Configure
-}
-
-src_compile() {
- ./config --prefix=/usr --openssldir=/etc/ssl shared threads || die
- # i think parallel make has problems
- make all || die
-}
-
-src_install() {
- make INSTALL_PREFIX=${D} MANDIR=/usr/share/man install || die
- dodoc CHANGES* FAQ LICENSE NEWS README
- dodoc doc/*.txt
- dohtml doc/*
- insinto /usr/share/emacs/site-lisp
- doins doc/c-indentation.el
-
- # The man pages rand.3 and passwd.1 conflict with other packages
- # Rename them to ssl-* and also make a symlink from openssl-* to ssl-*
- cd ${D}/usr/share/man/man1
- mv passwd.1 ssl-passwd.1
- ln -sf ssl-passwd.1 openssl-passwd.1
- cd ${D}/usr/share/man/man3
- mv rand.3 ssl-rand.3
- ln -sf ssl-rand.3 openssl-rand.3
-
- # create the certs directory. Previous openssl builds
- # would need to create /usr/lib/ssl/certs but this looks
- # to be the more FHS compliant setup... -raker
- dodir /etc/ssl/certs
-
-}
-
diff --git a/dev-libs/openssl/openssl-0.9.6g.ebuild b/dev-libs/openssl/openssl-0.9.6g.ebuild
deleted file mode 100644
index 3bcec6a1eb60..000000000000
--- a/dev-libs/openssl/openssl-0.9.6g.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.6g.ebuild,v 1.14 2003/03/11 21:11:45 seemant Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
-SRC_URI="http://www.openssl.org/source/${P}.tar.gz"
-HOMEPAGE="http://www.openssl.org/"
-
-RDEPEND="virtual/glibc"
-DEPEND="${RDEPEND} >=dev-lang/perl-5"
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="x86 ppc alpha sparc mips hppa"
-
-src_unpack() {
- unpack ${A} ; cd ${S}
-
- patch -p1 < ${FILESDIR}/${PF}-gentoo.diff
-
- if [ "${ARCH}" = "mips" ]
- then
- cd ${S}
- patch -p1 < ${FILESDIR}/openssl-0.9.6-mips.diff || die
- fi
-
- # many apps linking to openssl needs -fPIC
- if [ "${ARCH}" = "hppa" ]
- then
- CFLAGS="${CFLAGS} -fPIC"
- fi
-
- cp Configure Configure.orig
- sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" Configure.orig > Configure
-}
-
-src_compile() {
- ./config --prefix=/usr --openssldir=/usr/lib/ssl shared threads || die
- # i think parallel make has problems
- make all || die
-}
-
-src_install() {
- make INSTALL_PREFIX=${D} MANDIR=/usr/share/man install || die
- dodoc CHANGES* FAQ LICENSE NEWS README
- dodoc doc/*.txt
- dohtml doc/*
- insinto /usr/share/emacs/site-lisp
- doins doc/c-indentation.el
-
- # The man pages rand.3 and passwd.1 conflict with other packages
- # Rename them to ssl-* and also make a symlink from openssl-* to ssl-*
- cd ${D}/usr/share/man/man1
- mv passwd.1 ssl-passwd.1
- ln -sf ssl-passwd.1 openssl-passwd.1
- cd ${D}/usr/share/man/man3
- mv rand.3 ssl-rand.3
- ln -sf ssl-rand.3 openssl-rand.3
-}
-
diff --git a/dev-libs/openssl/openssl-0.9.6h.ebuild b/dev-libs/openssl/openssl-0.9.6h.ebuild
deleted file mode 100644
index 989d54c10310..000000000000
--- a/dev-libs/openssl/openssl-0.9.6h.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.6h.ebuild,v 1.5 2003/03/11 21:11:45 seemant Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
-SRC_URI="http://www.openssl.org/source/${P}.tar.gz"
-HOMEPAGE="http://www.openssl.org/"
-
-RDEPEND="virtual/glibc"
-DEPEND="${RDEPEND} >=dev-lang/perl-5"
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~alpha ~sparc ~hppa"
-
-src_unpack() {
- unpack ${A} ; cd ${S}
-
- patch -p1 < ${FILESDIR}/${PF}-gentoo.diff
-
- # many apps linking to openssl needs -fPIC
- if [ "${ARCH}" = "hppa" ]
- then
- CFLAGS="${CFLAGS} -fPIC"
- fi
-
-
- cp Configure Configure.orig
- sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" Configure.orig > Configure
-}
-
-src_compile() {
- ./config --prefix=/usr --openssldir=/etc/ssl shared threads || die
- # i think parallel make has problems
- make all || die
-}
-
-src_install() {
- make INSTALL_PREFIX=${D} MANDIR=/usr/share/man install || die
- dodoc CHANGES* FAQ LICENSE NEWS README
- dodoc doc/*.txt
- dohtml doc/*
- insinto /usr/share/emacs/site-lisp
- doins doc/c-indentation.el
-
- # The man pages rand.3 and passwd.1 conflict with other packages
- # Rename them to ssl-* and also make a symlink from openssl-* to ssl-*
- cd ${D}/usr/share/man/man1
- mv passwd.1 ssl-passwd.1
- ln -sf ssl-passwd.1 openssl-passwd.1
- cd ${D}/usr/share/man/man3
- mv rand.3 ssl-rand.3
- ln -sf ssl-rand.3 openssl-rand.3
-
- # create the certs directory. Previous openssl builds
- # would need to create /usr/lib/ssl/certs but this looks
- # to be the more FHS compliant setup... -raker
- dodir /etc/ssl/certs
-
-}
-
diff --git a/dev-libs/openssl/openssl-0.9.7.ebuild b/dev-libs/openssl/openssl-0.9.7.ebuild
deleted file mode 100644
index 4cfc6953b151..000000000000
--- a/dev-libs/openssl/openssl-0.9.7.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.7.ebuild,v 1.6 2003/03/11 21:11:45 seemant Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Toolkit for SSL v2/v3 and TLS v1"
-SRC_URI="http://www.openssl.org/source/${P}.tar.gz"
-HOMEPAGE="http://www.openssl.org/"
-
-RDEPEND="virtual/glibc"
-DEPEND="${RDEPEND} >=dev-lang/perl-5"
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~alpha ~sparc ~hppa"
-
-warning() {
- ewarn "BIG FAT WARNING!!!"
- ewarn "You must re-emerge every package that links to openssl after you have merged ${P}"
- ewarn "This is becuse packages that links against ${PN} links against the full version"
- ewarn "Also, if you don't have the sources for the packages you need to re-emerge you"
- ewarn "should download them with emerge -f prior to the installation of ${P}."
- ewarn "This is becuse wget may be linked against ${PN}."
- ewarn "To generate a list of packages that links against ${PN} you can download"
- ewarn "and run the script from http://cvs.gentoo.org/~aliz/openssl_update.sh"
- ewarn "If you are using binary packages you need to rebuild those against the"
- ewarn "new version of ${PN}"
- sleep 10
-}
-
-src_unpack() {
- warning
- unpack ${A} ; cd ${S}
-
- patch -p1 < ${FILESDIR}/${PF}-gentoo.diff
-
- # many apps linking to openssl needs -fPIC
- if [ "${ARCH}" = "hppa" ]
- then
- CFLAGS="${CFLAGS} -fPIC"
- fi
-
-
- cp Configure Configure.orig
- sed -e "s/-O3/$CFLAGS/" -e "s/-m486//" Configure.orig > Configure
-}
-
-src_compile() {
- ./config --prefix=/usr --openssldir=/etc/ssl shared threads || die
- # i think parallel make has problems
- make all || die
-}
-
-src_install() {
- make INSTALL_PREFIX=${D} MANDIR=/usr/share/man install || die
- dodoc CHANGES* FAQ LICENSE NEWS README
- dodoc doc/*.txt
- dohtml doc/*
- insinto /usr/share/emacs/site-lisp
- doins doc/c-indentation.el
-
- # The man pages rand.3 and passwd.1 conflict with other packages
- # Rename them to ssl-* and also make a symlink from openssl-* to ssl-*
- cd ${D}/usr/share/man/man1
- mv passwd.1 ssl-passwd.1
- ln -sf ssl-passwd.1 openssl-passwd.1
- cd ${D}/usr/share/man/man3
- mv rand.3 ssl-rand.3
- ln -sf ssl-rand.3 openssl-rand.3
-
- # create the certs directory. Previous openssl builds
- # would need to create /usr/lib/ssl/certs but this looks
- # to be the more FHS compliant setup... -raker
- dodir /etc/ssl/certs
-
-}
-