Fixup fromcvs/togit conversion
[pkgsrcv2.git] / databases / guile-pg / Makefile
1 # $NetBSD: Makefile,v 1.42 2010/03/19 11:26:57 gdt Exp $
2 #
3
4 DISTNAME=       guile-pg-0.39
5 PKGREVISION=    1
6 CATEGORIES=     databases
7 MASTER_SITES=   http://www.gnuvola.org/software/guile-pg/
8
9 MAINTAINER=     gdt@NetBSD.org
10 HOMEPAGE=       http://www.gnuvola.org/software/guile-pg/
11 COMMENT=        PostgreSQL interface for Guile
12 LICENSE=        gnu-gpl-v3
13
14 PKG_DESTDIR_SUPPORT=    user-destdir
15
16 USE_LIBTOOL=    YES
17 USE_TOOLS+=     gmake
18 GNU_CONFIGURE=  YES
19 INFO_FILES=     YES
20
21 TEST_TARGET=    check
22
23 # There are several versions of guile; the relevant ones for this
24 # module are 1.6.x, which is the old FSF version, and ttn-1.4,
25 # which is a forked version of 1.4 by Thien-Thi Nguyen, the maintainer
26 # of guile-pg.  fsf-1.4 is considered obsolete by nearly everyone.
27
28 # In 1.6 (but not fsf-1.4 or ttn-1.4), binary modules are deprecated.
29 # guile-pg uses binary modules, and places them and scheme code in
30 # $GUILE_LIBSITE, which is searched by ttn-1.4, but not by 1.6.  The
31 # simplest nonproblematic solution is to symlink the installed code to
32 # where 1.6 expects it.  We could patch guile-pg to install in 1.6's
33 # preferred location ${PREFIX}/share/guile/site, but there is a shared
34 # library which of course cannot go in share.
35
36 # In 1.8, binary modules have been removed.  Support for guile-pg to
37 # use 1.8-style modules has not yet been written.
38
39 SITE=${PREFIX}/guile/1.6/share/guile/site
40
41 # guile should make the dir, but if not
42 post-install:
43         ${INSTALL_DATA_DIR} ${DESTDIR}${SITE}
44         cd ${DESTDIR}${SITE} && ${LN} -sf ../../../../../lib/guile/site/database .
45
46 .include "../../lang/guile16/buildlink3.mk"
47 .include "../../mk/pgsql.buildlink3.mk"
48 .include "../../mk/bsd.pkg.mk"