freebsd-ports/archivers/ruby-zlib/Makefile
Akinori MUSHA be5a93f9f9 Fix the build of lang/ruby_static-devel, i.e. the build of
archiver/ruby-zlib with lang/ruby-devel in the correct way.

The cause of this problem is that FreeBSD's make(1) got a bit too
sensitive about a mixture of `target:' and `target::'.
2002-11-27 17:14:23 +00:00

41 lines
844 B
Makefile

# New ports collection makefile for: Ruby-zlib
# Date created: 12 Aug 2000
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= zlib
PORTVERSION= 0.5.1
CATEGORIES= archivers ruby
MASTER_SITES= http://www.blue.sky.or.jp/atelier/ruby/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= ruby-${PORTNAME}-${PORTVERSION:S/.p/-pre/}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
USE_RUBY= yes
USE_RUBY_EXTCONF= yes
INSTALL_TARGET= site-install
DOCS_EN= ChangeLog zlib.rd.en zlib.en.html
DOCS_JA= zlib.rd.ja zlib.ja.html
post-extract:
${RM} ${WRKSRC}/depend
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODDOCDIR}/ja
.for f in ${DOCS_EN}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.for f in ${DOCS_JA}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ja/
.endfor
.endif
.include <bsd.port.mk>