1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/x11/ruby-X11/Makefile

40 lines
909 B
Makefile
Raw Normal View History

# New ports collection makefile for: RubyX11
# Date created: 31 May 2001
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= X11
2001-07-10 19:33:12 +00:00
PORTVERSION= 0.5
CATEGORIES= x11 ruby
MASTER_SITES= http://hostname.2y.net/~matju/RubyX11/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= Ruby${PORTNAME}-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
USE_RUBY= yes
NO_BUILD= yes
DOCS= ChangeLog Documentation Overview TODO
EXAMPLES= tests/*
do-install:
${MKDIR} ${RUBY_SITELIBDIR}/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}/* ${RUBY_SITELIBDIR}/${PORTNAME}/
.if !defined(NOPORTDOCS)
2001-07-10 19:33:12 +00:00
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
.for f in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_EXAMPLESDIR}/${PORTNAME}/
.endfor
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
.endfor
.endif
.include <bsd.port.mk>