summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authortaca <taca@pkgsrc.org>2002-06-09 11:07:36 +0000
committertaca <taca@pkgsrc.org>2002-06-09 11:07:36 +0000
commitb66e1367a250d4101374370035773286cce8b344 (patch)
treed88639c2d11e92bd72f9fa621904a0b6221733ed /security
parent10720de124e662690dfad8662ffeb78fb5157e4d (diff)
downloadpkgsrc-b66e1367a250d4101374370035773286cce8b344.tar.gz
Delete ruby-sha1 package. This is already included in ruby 1.6.7 and later.
Diffstat (limited to 'security')
-rw-r--r--security/ruby-sha1/DESCR7
-rw-r--r--security/ruby-sha1/Makefile29
-rw-r--r--security/ruby-sha1/PLIST4
-rw-r--r--security/ruby-sha1/distinfo5
-rw-r--r--security/ruby-sha1/patches/patch-aa20
5 files changed, 0 insertions, 65 deletions
diff --git a/security/ruby-sha1/DESCR b/security/ruby-sha1/DESCR
deleted file mode 100644
index 9a3f8462b28..00000000000
--- a/security/ruby-sha1/DESCR
+++ /dev/null
@@ -1,7 +0,0 @@
-ruby-sha1 - A Ruby interface to the SHA-1 Secure Hash Algorithm
-
-This is a Ruby extension which implements the SHA-1 Secure Hash
-Algorithm by NIST (the US' National Institute of Standards and
-Technology), described in FIPS PUB 180-1.
-
-Author: Steve Coltrin <spcoltri@omcl.org>
diff --git a/security/ruby-sha1/Makefile b/security/ruby-sha1/Makefile
deleted file mode 100644
index cc7aa2d1e99..00000000000
--- a/security/ruby-sha1/Makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-# $NetBSD: Makefile,v 1.3 2002/03/21 04:57:54 fredb Exp $
-# FreeBSD: ports/converters/ruby-sha1/Makefile,v 1.2 2000/11/03 18:14:37 knu Exp
-
-DISTNAME= ruby-sha1-${VERSION}
-PKGNAME= ${RUBY_PKGNAMEPREFIX}sha1-${VERSION}
-PKGREVISION= 1
-CATEGORIES= security
-MASTER_SITES= http://www.omcl.org/~spcoltri/ruby/
-
-MAINTAINER= taca@netbsd.org
-HOMEPAGE= http://www.omcl.org/~spcoltri/ruby/ruby-sha1.html
-COMMENT= Ruby interface to the SHA-1 Secure Hash Algorithm
-
-DEPENDS+= ruby-base>=1.6.7nb1:../../lang/ruby-base
-
-VERSION= 1.2
-DIST_SUBDIR= ruby
-USE_RUBY_EXTCONF= yes
-
-RUBY_VER= 1.4 # now this is for ruby 1.4 only.
-
-INSTALL_TARGET= site-install
-
-post-install:
- ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/sha1
- ${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/sha1
-
-.include "../../lang/ruby-base/Makefile.common"
-.include "../../mk/bsd.pkg.mk"
diff --git a/security/ruby-sha1/PLIST b/security/ruby-sha1/PLIST
deleted file mode 100644
index a84e0e8c89e..00000000000
--- a/security/ruby-sha1/PLIST
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1 2001/11/01 01:17:43 zuntum Exp $
-${RUBY_SITEARCHLIBDIR}/sha1.so
-${RUBY_DOCDIR}/sha1/README
-@dirrm ${RUBY_DOCDIR}/sha1
diff --git a/security/ruby-sha1/distinfo b/security/ruby-sha1/distinfo
deleted file mode 100644
index 058e4eeacc1..00000000000
--- a/security/ruby-sha1/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.1.1.1 2001/07/01 13:42:06 taca Exp $
-
-SHA1 (ruby/ruby-sha1-1.2.tar.gz) = 09c5674a5c5a17d23a37aa19c7b6cb8c8eeecfae
-Size (ruby/ruby-sha1-1.2.tar.gz) = 3866 bytes
-SHA1 (patch-aa) = 372c6fb08ae3bd021a6ee903b13257914a6ac990
diff --git a/security/ruby-sha1/patches/patch-aa b/security/ruby-sha1/patches/patch-aa
deleted file mode 100644
index e42602b26bb..00000000000
--- a/security/ruby-sha1/patches/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/07/01 13:42:06 taca Exp $
-
---- extconf.rb.orig Fri Nov 3 05:08:42 2000
-+++ extconf.rb
-@@ -1,15 +1,3 @@
- require 'mkmf'
-
--i = 0x01020304
--
--case [i].pack('l')
-- when [i].pack('V')
-- $CFLAGS += " -DLITTLE_ENDIAN"
-- when [i].pack('N')
-- $CFLAGS += " -DBIG_ENDIAN"
-- else
-- p "Sorry, your machine has an unusual byte order which is not supported."
-- exit!
--end
--
- create_makefile('sha1')