[119413] users/devans/GNOME-3/stable/dports

devans at macports.org devans at macports.org
Thu Apr 24 17:14:58 PDT 2014


Revision: 119413
          https://trac.macports.org/changeset/119413
Author:   devans at macports.org
Date:     2014-04-24 17:14:58 -0700 (Thu, 24 Apr 2014)
Log Message:
-----------
GNOME-3/stable: add maintainer updates for libgit2-glib, ghex, libmediaart.

Added Paths:
-----------
    users/devans/GNOME-3/stable/dports/devel/libgit2-glib/
    users/devans/GNOME-3/stable/dports/devel/libgit2-glib/Portfile
    users/devans/GNOME-3/stable/dports/gnome/ghex/
    users/devans/GNOME-3/stable/dports/gnome/ghex/Portfile
    users/devans/GNOME-3/stable/dports/graphics/libmediaart/
    users/devans/GNOME-3/stable/dports/graphics/libmediaart/Portfile

Added: users/devans/GNOME-3/stable/dports/devel/libgit2-glib/Portfile
===================================================================
--- users/devans/GNOME-3/stable/dports/devel/libgit2-glib/Portfile	                        (rev 0)
+++ users/devans/GNOME-3/stable/dports/devel/libgit2-glib/Portfile	2014-04-25 00:14:58 UTC (rev 119413)
@@ -0,0 +1,47 @@
+# -*- 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
+# $Id$
+
+PortSystem          1.0
+
+name                libgit2-glib
+version             0.0.12
+license             LGPL-2.1
+set branch          [join [lrange [split ${version} .] 0 1] .]
+description         Glib wrapper library around the libgit2 git access library.
+long_description    ${description}
+
+maintainers         gmail.com:juanrgar openmaintainer
+categories          gnome devel
+platforms           darwin
+homepage            https://wiki.gnome.org/action/show/Apps/Gitg
+master_sites        gnome:sources/${name}/${branch}/
+
+use_xz              yes
+
+checksums           rmd160  c17367d448516a1cf12ec3f06fdd067330e57262 \
+                    sha256  193125b314f588894b769058be28101fb0b2bec345520ca6398ee4e8b7319762
+
+depends_build       port:pkgconfig
+
+depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2 \
+                    port:libgit2 \
+                    port:gobject-introspection
+
+configure.args      --disable-silent-rules \
+                    --enable-python=no
+
+variant python32 description {Enable Python support, using python32} conflicts python33 {
+    configure.args-delete --enable-python=no
+    configure.args-append --enable-python=yes
+    depends_lib-append port:py32-gobject3
+    configure.pkg_config_path-append ${frameworks_dir}/Python.framework/Versions/3.2/lib/pkgconfig/
+}
+
+variant python33 description {Enable Python support, using python33} conflicts python32 {
+    configure.args-delete --enable-python=no
+    configure.args-append --enable-python=yes
+    depends_lib-append port:py33-gobject3
+    configure.pkg_config_path-append ${frameworks_dir}/Python.framework/Versions/3.3/lib/pkgconfig/
+}
+
+livecheck.type      gnome

Added: users/devans/GNOME-3/stable/dports/gnome/ghex/Portfile
===================================================================
--- users/devans/GNOME-3/stable/dports/gnome/ghex/Portfile	                        (rev 0)
+++ users/devans/GNOME-3/stable/dports/gnome/ghex/Portfile	2014-04-25 00:14:58 UTC (rev 119413)
@@ -0,0 +1,60 @@
+# -*- 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
+# $Id: Portfile 117676 2014-03-07 22:58:04Z devans at macports.org $
+
+PortSystem      1.0
+
+name            ghex
+version         3.10.1
+license         GPL-2+
+set branch      [join [lrange [split ${version} .] 0 1] .]
+description     GHex - a binary editor.
+long_description \
+                GHex allows the user to load data from any file, \
+                view and edit it in either hex or ascii. A must for \
+                anyone playing games that use non-ascii format for saving.
+maintainers     gmail.com:juanrgar openmaintainer
+categories      gnome
+platforms       darwin
+homepage        https://wiki.gnome.org/Apps/Ghex
+master_sites    gnome:sources/${name}/${branch}/
+
+use_xz          yes
+
+checksums       rmd160  3873579075c035627fdc9d901977df40f0ae68b9 \
+                sha256  34b66cb5c84410c420df72f229d25aee5979e58048a246ed719b046f0c241132
+
+depends_build   port:pkgconfig \
+                port:intltool \
+                port:itstool \
+                port:yelp-tools \
+                port:gnome-common
+
+depends_lib     port:desktop-file-utils \
+                port:atk \
+                port:gtk3
+
+depends_run     port:yelp \
+                port:gnome-settings-daemon
+
+# update m4/intltool.m4 and autoreconf
+
+pre-configure {
+    copy -force ${prefix}/share/aclocal/intltool.m4 ${worksrcpath}/m4
+}
+
+use_autoreconf  yes
+autoreconf.args -fvi
+
+configure.cflags-append \
+                -Wno-format-nonliteral
+
+configure.args  --disable-schemas-compile
+
+post-activate {
+    system "${prefix}/bin/update-desktop-database ${prefix}/share/applications"
+    system "${prefix}/bin/gtk-update-icon-cache-3.0 -f -t ${prefix}/share/icons/hicolor"
+    system "${prefix}/bin/gtk-update-icon-cache-3.0 -f -t ${prefix}/share/icons/HighContrast"
+    system "${prefix}/bin/glib-compile-schemas ${prefix}/share/glib-2.0/schemas"
+}
+
+livecheck.type  gnome

Added: users/devans/GNOME-3/stable/dports/graphics/libmediaart/Portfile
===================================================================
--- users/devans/GNOME-3/stable/dports/graphics/libmediaart/Portfile	                        (rev 0)
+++ users/devans/GNOME-3/stable/dports/graphics/libmediaart/Portfile	2014-04-25 00:14:58 UTC (rev 119413)
@@ -0,0 +1,55 @@
+# -*- 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
+# $Id: Portfile 119037 2014-04-15 18:56:19Z ryandesign at macports.org $
+
+PortSystem          1.0
+
+name                libmediaart
+version             0.4.0
+license             GPL-2 LGPL-2.1
+set branch          [join [lrange [split ${version} .] 0 1] .]
+description         Library tasked with managing, extracting and handling media art caches.
+long_description    ${description}
+
+maintainers         gmail.com:juanrgar openmaintainer
+categories          graphics gnome
+platforms           darwin
+homepage            https://wiki.gnome.org/MediaArtStorageSpec
+master_sites        gnome:sources/${name}/${branch}/
+
+use_xz              yes
+
+checksums           rmd160  ff861380e6bc9b4edea9a78df5312b4e728b5d52 \
+                    sha256  e8ec92a642f4df7f988364f6451adf89e1611d7379a636d8c7eff4ca21a0fd1c
+
+depends_build       port:pkgconfig
+
+depends_lib         path:lib/pkgconfig/glib-2.0.pc:glib2 \
+                    port:gobject-introspection \
+                    port:vala
+
+configure.args      --disable-silent-rules \
+                    --enable-introspection=yes \
+                    --enable-vala \
+                    --enable-gdkpixbuf=no \
+                    --enable-qt=no \
+                    --enable-nemo=no
+
+variant gdkpixbuf conflicts qt4 description {Enable GdkPixbuf support, (MP3 album art)} {
+    configure.args-delete   --enable-gdkpixbuf=no
+    configure.args-append   --enable-gdkpixbuf=yes
+
+    depends_lib-append      port:gdk-pixbuf2
+}
+
+variant qt4 conflicts gdkpixbuf description {Enable Qt4 support, (MP3 album art)} {
+    configure.args-delete   --enable-qt=no
+    configure.args-append   --enable-qt=yes
+
+    depends_lib-append      port:qt4-mac
+}
+
+if {![variant_isset qt4]} {
+    default_variants    +gdkpixbuf
+}
+
+livecheck.type  gnome
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140424/239878b9/attachment.html>


More information about the macports-changes mailing list