5604e7a14d
Remove shells/ruby-shell as it is now part of the standard distribution. (in both Ruby 1.6.4 and 1.7.0) Mark security/ruby-sha1 broken for Ruby >= 1.7.0, as it is also part of the standard distribution now.
38 lines
779 B
Makefile
38 lines
779 B
Makefile
# New ports collection makefile for: ruby-sha1
|
|
# Date created: 3 Nov 2000
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sha1
|
|
PORTVERSION= 1.2
|
|
PORTEPOCH= 1
|
|
CATEGORIES= security ruby
|
|
MASTER_SITES= http://www.omcl.org/~spcoltri/ruby/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
RUBY_REQUIRE= Ruby < 170
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(RUBY_PROVIDED)
|
|
BROKEN= "ruby-sha1 is included as a standard module in Ruby >= 1.7.0"
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_DOCDIR}/sha1
|
|
${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/sha1/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|