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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name postgresql-unaccent |
---|
7 | version 0.1 |
---|
8 | categories databases |
---|
9 | platforms darwin |
---|
10 | maintainers od-eon.com:stefan.talpalaru |
---|
11 | |
---|
12 | description PostgreSQL extension that provides a function to remove accents from characters |
---|
13 | |
---|
14 | long_description PostgreSQL extension that provides a function to remove accents from characters \ |
---|
15 | (not compatible with the version bundled in postgresql-9.0) |
---|
16 | |
---|
17 | homepage http://launchpad.net/postgresql-unaccent/ |
---|
18 | master_sites http://launchpad.net/postgresql-unaccent/trunk/0.1/+download/ |
---|
19 | use_configure no |
---|
20 | |
---|
21 | checksums md5 e5e103dca2a15fb0b03842946dd4085b \ |
---|
22 | sha1 2867e9f95e764da3d04fe3719275ae05503033bd \ |
---|
23 | rmd160 85e8ed5221c4e3a659d6d3091460207ac9f29746 |
---|
24 | |
---|
25 | default_variants -universal |
---|
26 | |
---|
27 | depends_build port:postgresql90 |
---|
28 | depends_lib port:unac |
---|
29 | |
---|
30 | build.env PATH=$env(PATH):${prefix}/lib/postgresql90/bin |
---|
31 | destroot.env ${build.env} |
---|
32 | |
---|
33 | variant 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 | |
---|
39 | variant 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 | |
---|
45 | variant 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 | |
---|
51 | variant 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 | |
---|