1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name frogr |
---|
7 | version 0.9 |
---|
8 | license GPL-3 |
---|
9 | set branch [join [lrange [split ${version} .] 0 1] .] |
---|
10 | description Flickr Remote Organizer for GNOME. |
---|
11 | long_description Frogr is a small application for the GNOME desktop that allows users \ |
---|
12 | to manage their accounts in the Flickr image hosting website. It \ |
---|
13 | supports all the basic Flickr features, including uploading pictures, \ |
---|
14 | adding descriptions, setting tags and managing sets and groups pools. |
---|
15 | |
---|
16 | maintainers gmail.com:juanrgar openmaintainer |
---|
17 | categories gnome |
---|
18 | platforms darwin |
---|
19 | homepage https://wiki.gnome.org/Apps/Frogr |
---|
20 | master_sites gnome:sources/${name}/${branch}/ |
---|
21 | |
---|
22 | use_xz yes |
---|
23 | |
---|
24 | checksums rmd160 b1bbaa37a1ca3e816c54644f6f091216289dce8d \ |
---|
25 | sha256 7ab2af5936c51d0f37fec04101e20faba288e6df92f723c4671b163e9e689a9f |
---|
26 | |
---|
27 | depends_build port:pkgconfig \ |
---|
28 | port:intltool \ |
---|
29 | port:itstool |
---|
30 | |
---|
31 | depends_lib port:desktop-file-utils \ |
---|
32 | port:gnome-icon-theme \ |
---|
33 | port:gsettings-desktop-schemas \ |
---|
34 | port:gtk3 \ |
---|
35 | port:libexif \ |
---|
36 | port:libxml2 \ |
---|
37 | port:json-glib \ |
---|
38 | port:libgcrypt \ |
---|
39 | port:libsoup \ |
---|
40 | port:gstreamer1 |
---|
41 | |
---|
42 | depends_run port:gnome-settings-daemon \ |
---|
43 | port:yelp |
---|
44 | |
---|
45 | configure.args --disable-silent-rules |
---|
46 | |
---|
47 | # port installs desktop application file, and hicolor and HighContrast icons |
---|
48 | post-activate { |
---|
49 | system "${prefix}/bin/update-desktop-database ${prefix}/share/applications" |
---|
50 | system "${prefix}/bin/gtk-update-icon-cache-3.0 -f -t ${prefix}/share/icons/hicolor" |
---|
51 | system "${prefix}/bin/gtk-update-icon-cache-3.0 -f -t ${prefix}/share/icons/HighContrast" |
---|
52 | } |
---|
53 | |
---|
54 | livecheck.type gnome-with-unstable |
---|