1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/lang/ruby-perl/Makefile

49 lines
1.1 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: Ruby-perl
# Date created: 11 Aug 2000
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= perl
PORTVERSION= 0.2.7
CATEGORIES= lang ruby perl5
MASTER_SITES= http://www.bekkoame.ne.jp/~yoshidam/
2000-09-07 14:39:47 +00:00
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
USE_PERL5= yes
2000-09-07 14:39:47 +00:00
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
2000-09-07 14:39:47 +00:00
WRKSRC= ${WRKDIR}/${PORTNAME}
CONFIGURE_ARGS= --with-libperl=/usr/lib/libperl.so
2000-09-07 14:39:47 +00:00
INSTALL_TARGET= site-install
EXAMPLES= htmlparse.rb http.rb perllib.rb ping.rb \
test.rb xmlparser.rb
do-configure:
@cd ${WRKSRC}/Ruby; \
${PERL} Makefile.PL
post-build:
@cd ${WRKSRC}/Ruby; \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE}
post-install:
@cd ${WRKSRC}/Ruby; \
${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install
.if !defined(NOPORTDOCS)
2000-09-07 14:39:47 +00:00
${MKDIR} ${RUBY_EXAMPLESDIR}/perl
.for f in ${EXAMPLES}
2000-09-07 14:39:47 +00:00
${INSTALL_DATA} ${WRKSRC}/samples/${f} ${RUBY_EXAMPLESDIR}/perl/
.endfor
2000-09-07 14:39:47 +00:00
${MKDIR} ${RUBY_DOCDIR}/perl/ja
${INSTALL_DATA} ${WRKSRC}/README.ja ${RUBY_DOCDIR}/perl/ja/
.endif
.include <bsd.port.mk>