Ticket #29427: Portfile

File Portfile, 2.1 KB (added by stefan.talpalaru@…, 13 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem              1.0
5
6name                    postgresql-unaccent
7version                 0.1
8categories              databases
9platforms               darwin
10maintainers             od-eon.com:stefan.talpalaru
11
12description             PostgreSQL extension that provides a function to remove accents from characters
13
14long_description        PostgreSQL extension that provides a function to remove accents from characters \
15                        (not compatible with the version bundled in postgresql-9.0)
16
17homepage                http://launchpad.net/postgresql-unaccent/
18master_sites            http://launchpad.net/postgresql-unaccent/trunk/0.1/+download/
19use_configure           no
20
21checksums               md5     e5e103dca2a15fb0b03842946dd4085b \
22                        sha1    2867e9f95e764da3d04fe3719275ae05503033bd \
23                        rmd160  85e8ed5221c4e3a659d6d3091460207ac9f29746
24
25default_variants        -universal
26
27depends_build           port:postgresql90
28depends_lib             port:unac
29
30build.env               PATH=$env(PATH):${prefix}/lib/postgresql90/bin
31destroot.env             ${build.env}
32
33variant postgresql82 description {uses postgresql82 installation} {
34        depends_build           port:postgresql82
35    build.env           PATH=$env(PATH):${prefix}/lib/postgresql82/bin
36    destroot.env        ${build.env}
37}
38
39variant postgresql83 description {uses postgresql83 installation} {
40        depends_build           port:postgresql83
41    build.env           PATH=$env(PATH):${prefix}/lib/postgresql83/bin
42    destroot.env        ${build.env}
43}
44
45variant postgresql84 description {uses postgresql84 installation} {
46        depends_build           port:postgresql84
47    build.env           PATH=$env(PATH):${prefix}/lib/postgresql84/bin
48    destroot.env        ${build.env}
49}
50
51variant postgresql91 description {uses postgresql91 installation} {
52        depends_build           port:postgresql91
53    build.env           PATH=$env(PATH):${prefix}/lib/postgresql91/bin
54    destroot.env        ${build.env}
55}
56