40 lines
897 B
Makefile
40 lines
897 B
Makefile
|
# New ports collection makefile for: Ruby/MCrypt
|
||
|
# Date created: 20 June 2001
|
||
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PORTNAME= mcrypt
|
||
|
PORTVERSION= 0.2
|
||
|
CATEGORIES= security ruby
|
||
|
MASTER_SITES= http://www.rubylinks.de/download/ \
|
||
|
${MASTER_SITE_LOCAL}
|
||
|
MASTER_SITE_SUBDIR= knu
|
||
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||
|
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
||
|
DIST_SUBDIR= ruby
|
||
|
|
||
|
MAINTAINER= knu@FreeBSD.org
|
||
|
|
||
|
LIB_DEPENDS= mcrypt.6:${PORTSDIR}/security/libmcrypt/
|
||
|
|
||
|
USE_RUBY= yes
|
||
|
USE_RUBY_EXTCONF= yes
|
||
|
|
||
|
INSTALL_TARGET= site-install
|
||
|
|
||
|
DOCS_EN= ChangeLog README TODO
|
||
|
|
||
|
post-install:
|
||
|
.if !defined(NOPORTDOCS)
|
||
|
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
||
|
${INSTALL_DATA} ${WRKSRC}/testmcrypt.rb ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
||
|
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
|
||
|
.for f in ${DOCS_EN}
|
||
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
|
||
|
.endfor
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.port.mk>
|