mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
64b64d5ff7
dependent ports.
47 lines
980 B
Makefile
47 lines
980 B
Makefile
# New ports collection makefile for: Ruby/libcurl
|
|
# Date created: 31 March 2001
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= curl
|
|
PORTVERSION= 0.0.2.a0
|
|
PORTREVISION?= 1
|
|
CATEGORIES= ftp www ruby
|
|
MASTER_SITES= http://www.d1.dion.ne.jp/~matuyuki/
|
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
|
DISTNAME= rbCurl-${PORTVERSION:S/.a/a/}
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= ruby
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= Ruby interface to libcurl
|
|
|
|
BROKEN= "Does not compile"
|
|
|
|
LIB_DEPENDS= curl.3:${PORTSDIR}/ftp/curl
|
|
|
|
USE_RUBY= yes
|
|
USE_RUBY_EXTCONF= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:C/a.*//}
|
|
INSTALL_TARGET= site-install
|
|
|
|
DOCS_EN= README TODO
|
|
EXAMPLES_EN= example.rb
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
|
.for f in ${EXAMPLES_EN}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODEXAMPLESDIR}/
|
|
.endfor
|
|
${MKDIR} ${RUBY_MODDOCDIR}
|
|
.for f in ${DOCS_EN}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|