aboutsummaryrefslogtreecommitdiff
path: root/databases/ruby-sqlite/Makefile
blob: a3ed923e533b0b66497396c0a49ef250bfae1d52 (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
# New ports collection makefile for:	sqlite-ruby
# Date created:		26 June 2003
# Whom:			Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#

PORTNAME=	sqlite
PORTVERSION=	2.2.3
CATEGORIES=	databases ruby
MASTER_SITES=	http://rubyforge.org/frs/download.php/2819/
PKGNAMEPREFIX=	${RUBY_PKGNAMEPREFIX}
DISTNAME=	${PORTNAME}-ruby-${PORTVERSION}
DIST_SUBDIR=	ruby

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Ruby interface to the SQLite DB engine version 2

LIB_DEPENDS=	sqlite.2:${PORTSDIR}/databases/sqlite2

USE_BZIP2=	yes
USE_RUBY=	yes
USE_RUBY_EXTCONF=	yes

CONFIGURE_WRKSRC=	${WRKSRC}/ext
BUILD_WRKSRC=		${WRKSRC}/ext
INSTALL_WRKSRC=		${WRKSRC}/ext
INSTALL_TARGET=	site-install

DOCS=	ChangeLog LICENSE api/* doc/*

post-extract:
	${LN} -s ../lib ${WRKSRC}/ext/

post-install:
.if !defined(NOPORTDOCS)
	${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS}
	${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif

.include <bsd.port.mk>