1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-07 06:40:06 +00:00
freebsd-ports/devel/ruby-jttui/Makefile
Alan Eldridge 0bf04dc976 A text mode library. Curses widgets. That sort of thing. Supposedly not
much documentation, so I'll have to puzzle out how to use it. If I do and
have the time, I'll write it down in .rd so we can use it.
2003-02-12 09:16:13 +00:00

40 lines
1010 B
Makefile

# ex:ts=8 -*-mode: makefile-*-
#
# New ports collection makefile for: ruby-jttui
# Date created: 2003-02-12
# Whom: Alan Eldridge <alane@geeksrus.net>
#
# $FreeBSD$
#
PORTNAME= jttui
PORTVERSION= 200205082055
PORTREVISION= 0
PORTEPOCH= 0
CATEGORIES= devel ruby
MASTER_SITES= http://klokan.sh.cvut.cz/~jtra/download/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= jttui.${PORTVERSION}
MAINTAINER= alane@geeksrus.net
COMMENT= Textmode User Interface by Jakub Travnik
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
INSTALL_TARGET= site-install
.include <bsd.port.pre.mk>
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DESTDIR}${RUBY_MODDOCDIR}
cd ${WRKSRC}/doc; \
${FIND} . | cpio -pdmv ${DESTDIR}${RUBY_MODDOCDIR}
${CHMOD} -R ugo+rX,ugo-w ${DESTDIR}${RUBY_MODDOCDIR}
${MKDIR} ${DESTDIR}${RUBY_MODEXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/examples/* ${DESTDIR}${RUBY_MODEXAMPLESDIR}
${CHMOD} ugo+x ${DESTDIR}${RUBY_MODEXAMPLESDIR}/example-*.rb
.endif # !defined(NOPORTDOCS)
.include <bsd.port.post.mk>
#EOF