blob: 84d926396505cbf1ab822fcf67f2b0b7afe94d2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: ruby-lafcadio
# Date created: 09 Jan 2007
# Whom: Christopher Boumenot <boumenot@gmail.com>
#
# $FreeBSD$
#
PORTNAME= wirble
PORTVERSION= 0.1.3
CATEGORIES= devel ruby
MASTER_SITES=http://pablotron.org/files/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
MAINTAINER= ruby@FreeBSD.org
COMMENT= A set of enhancements of irb
DOCS_EN= README
USE_RUBY= yes
do-build:
do-install:
${INSTALL_DATA} ${WRKSRC}/lib/wirble.rb ${RUBY_SITELIBDIR}/
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.mk>
|