mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
39a413d6b9
They are not the patches from the submitter, but one which overcome knu@s objections about the original ones and discussed in ports/69037. PR: ports/69027 ports/69028 ports/69029 ports/69030 ports/69031 ports/69032 ports/69033 ports/69034 ports/69035 ports/69036 ports/69037 Submitted by: Wesley Shields <wxs@csh.rit.edu>
50 lines
961 B
Makefile
50 lines
961 B
Makefile
# New ports collection makefile for: Ruby-Mmap
|
|
# Date created: 8 March 2001
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mmap
|
|
PORTVERSION= 0.2.4
|
|
CATEGORIES= devel ruby
|
|
MASTER_SITES= ftp://moulon.inra.fr/pub/ruby/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= Ruby interface to manage memory-mapped file objects
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
USE_RUBY_RDOC= yes
|
|
|
|
RUBY_RD_FILES= mmap.rd
|
|
|
|
INSTALL_TARGET= site-install
|
|
|
|
DOCS= Changes \
|
|
README.en \
|
|
${RUBY_RD_FILES} \
|
|
${RUBY_RD_HTML_FILES} \
|
|
docs/doc
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-build:
|
|
.if !defined(NOPORTDOCS)
|
|
cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} rdoc
|
|
.endif
|
|
|
|
post-install: doc-install
|
|
|
|
doc-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS}
|
|
${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|