Ticket #15176: Portfile

File Portfile, 1.7 KB (added by rjt-gramps@…, 16 years ago)

Portfile for gramps 3.0.1

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