blob: 5116e0e9cf0f8df0cf951c70d0063ddb92b203be (
plain)
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
|
# $NetBSD: Makefile,v 1.12 2004/03/16 02:01:10 taca Exp $
DISTNAME= ruby-postgres-${VERSION}
PKGNAME= ${RUBY_PKGNAMEPREFIX}postgresql-${VERSION}
CATEGORIES= databases ruby
MASTER_SITES= http://www.postgresql.jp/interfaces/ruby/archive/
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.postgresql.jp/interfaces/ruby/
COMMENT= Ruby extension for postgresql
USE_BUILDLINK2= # defined
VERSION= 0.7.1
DIST_SUBDIR= ruby
USE_RUBY_EXTCONF= yes
CONFIGURE_ARGS+= --with-pgsql-include-dir=${PREFIX}/include/postgresql \
--with-pgsql-lib-dir=${PREFIX}/lib
INSTALL_TARGET= site-install
DOC= README README.ja doc/postgres.html doc/postgres.ja.html
EXAMPLE_LIBS= losample.rb psqlHelp.rb
EXAMPLE_SCRIPTS= psql.rb test1.rb test2.rb test4.rb
REPLACE_RUBY= sample/psql.rb sample/test1.rb sample/test2.rb \
sample/test4.rb
pre-install:
@cd ${WRKSRC}; \
${CP} -p doc/postgres.jp.html doc/postgres.ja.html
post-install:
${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/postgresql
.for f in ${DOC}
${INSTALL_DATA} ${WRKSRC}/$f ${RUBY_DOCDIR}/postgresql
.endfor
${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/postgresql
.for f in ${EXAMPLE_LIBS}
${INSTALL_DATA} ${WRKSRC}/sample/$f ${RUBY_EXAMPLESDIR}/postgresql
.endfor
.for f in ${EXAMPLE_SCRIPTS}
${INSTALL_SCRIPT} ${WRKSRC}/sample/$f ${RUBY_EXAMPLESDIR}/postgresql
.endfor
.include "../../databases/postgresql-lib/buildlink2.mk"
.include "../../lang/ruby-base/Makefile.common"
.include "../../lang/ruby-base/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|