Ticket #24258: Portfile

File Portfile, 2.1 KB (added by guy.linton@…, 14 years ago)

Portfile for Gramps 3.2.0

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: Portfile 28793 2007-09-09 00:33:21Z yves@macports.org $
3
4PortSystem                      1.0
5
6name                            gramps
7version                         3.2.0
8categories                      gnome science python genealogy
9platforms                       darwin
10maintainers                     nomaintainer@macports.org
11
12description                     GRAMPS is a genealogy program
13
14long_description        GRAMPS is a genealogy program to store, edit, \
15                                and research genealogical data.  It provides \
16                                advanced capabilities for research, analysis, and \
17                                correlation to potentially fill relationship gaps. \
18                                        NOTE1: Some users have experienced problems importing \
19                                        databases from Gramp version 2 or from 3.1.x. It is adviced that \
20                                        databases are exported from Gramps version 2 in \
21                                        Gramps XML format before updating to Gramps version 3. \
22                                        The Gramps XML export from version 2 can then be imported \
23                                        into gramps 3 if the automatic database upgrade does not \
24                                        work.\
25                                        NOTE2: The WriteCD plugin is unavailable. This relies on \
26                                        GNOME and has not been made to work on OS X. \
27                                        NOTE3: The spelling checker is not installed because \
28                                        there is no MacPort of the python bindings to gtkspell. \
29                                        NOTE4: The Geographic View is not available because \
30                                        webkit-gtk does not build under MacPorts (ticket 23464)
31
32homepage                        http://www.gramps-project.org/
33master_sites            sourceforge:gramps
34checksums                       md5 38f905162c9f3064e46397d9907492f7
35                   
36# patchfiles            patch-configure
37
38configure.args          --disable-mime-install \
39                                        --disable-scrollkeeper
40                               
41
42configure.env           PYTHON=${prefix}/bin/python2.5 \
43                                        GMSGFMT=${prefix}/bin/msgfmt
44
45depends_lib                     bin:update-mime-database:shared-mime-info \
46                                        port:py25-gtk \
47                                        port:py25-gnome \
48                                        port:py25-bsddb \
49                                        port:py25-hashlib \
50                                        port:py25-zlib \
51                                        port:gtkspell2 \
52                                        port:aspell-dict-en \
53                                        port:gnome-python-extras
54
55
56post-activate {
57                                        system "update-mime-database ${prefix}/share/mime"
58                                        system "scrollkeeper-update"
59}       
60