blob: 098278edc3af239d5585529091deef657c89a874 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# 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"
EXPIRATION_DATE=2005-02-18
DEPRECATED= ${BROKEN}
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>
|