pkgsrc/databases/guile-pg/Makefile
gdt ce59777d41 Update to 0.29. Changes since last update:
- 0.29 | 2005-08-25

  - Dropped proc: where-clausifier
  - Dropped proc: tuples-result->table
  - For `gxrepl', results are now printed with " | " field separator
  - All (database postgres) procs now tested
  - Support files guile.m4 and modsup.h synched with Guile 1.4.1.106


- 0.28 | 2005-05-09

  - Bugfix: array reference handling in (database postgres-qcons)
  - FSF street address updated in copyright notices


- 0.27 | 2005-03-02

  - Result objects print without redundant "PGRES_" prefix
  - New command for (database postgres-table) proc `pgtable-manager'
  - New (database postgres-resx) proc: result->object-rows
  - Changes to module (database postgres-qcons)

- 0.26 | 2005-02-24

  - Expiration date set for opaque string support
  - Expiration date set for two (database postegres-table) procs
  - Dropped (database postgres-types) proc: dbcoltype:name
  - New type converters in module (database postgres-types)
  - New module: (database postgres-qcons)
  - New module: (database postgres-resdisp)
  - New module: (database postgres-gxrepl)


- 0.25 | 2005-01-02

  - New (database postgres) proc: pg-result-error-message

- 0.24 | 2004-11-24

  - New (database postgres) proc: pg-set-nonblocking!
  - New (database postgres) proc: pg-is-nonblocking?
2005-12-09 16:01:10 +00:00

42 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.24 2005/12/09 16:01:10 gdt Exp $
#
DISTNAME= guile-pg-0.29
CATEGORIES= databases
MASTER_SITES= http://www.glug.org/people/ttn/software/guile-pg/
MAINTAINER= gdt@NetBSD.org
HOMEPAGE= http://www.glug.org/people/ttn/software/guile-pg/
COMMENT= PostgreSQL interface for Guile
USE_LIBTOOL= YES
USE_TOOLS+= gmake
GNU_CONFIGURE= YES
TEST_TARGET= check
INFO_FILES= guile-pg.info
# There are several versions of guile; the relevant ones for this
# module are 1.6.x, which is the current FSF version, and ttn-1.4,
# which is a forked version of 1.4 by Thien-Thi Nguyen, the maintainer
# of guile-pg. fsf-1.4 is considered obsolete by nearly everyone.
# In 1.6 (but not fsf-1.4 or ttn-1.4), binary modules are deprecated.
# guile-pg uses binary modules, and places them and scheme code in
# $GUILE_LIBSITE, which is searched by ttn-1.4, but not by 1.6. The
# simplest nonproblematic solution is to symlink the installed code to
# where 1.6 expects it. We could patch guile-pg to install in 1.6's
# preferred location ${PREFIX}/share/guile/site, but there is a shared
# library which of course cannot go in share.
post-install:
# guile should make this, but if not
${INSTALL_DATA_DIR} ${PREFIX}/share/guile/site
cd ${PREFIX}/share/guile/site && ${LN} -sf ../../../lib/guile/site/database .
PGSQL_VERSION_REQD= 74
.include "../../lang/guile/buildlink3.mk"
.include "../../mk/pgsql.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"