freebsd-ports/lang/ruby-perl/Makefile
Akinori MUSHA 37f0f0aa36 Bump the PORTREVISION's of the ports which install architecture
dependent ruby modules, due to the RUBY_ARCH change I've just
committed.
2001-09-17 17:54:27 +00:00

50 lines
1.1 KiB
Makefile

# 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
PORTREVISION= 1
CATEGORIES= lang ruby perl5
MASTER_SITES= http://www.yoshidam.net/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
USE_PERL5= yes
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
CONFIGURE_ARGS= --with-libperl=/usr/lib/libperl.so
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)
${MKDIR} ${RUBY_EXAMPLESDIR}/perl
.for f in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/samples/${f} ${RUBY_EXAMPLESDIR}/perl/
.endfor
${MKDIR} ${RUBY_DOCDIR}/perl/ja
${INSTALL_DATA} ${WRKSRC}/README.ja ${RUBY_DOCDIR}/perl/ja/
.endif
.include <bsd.port.mk>