Ticket #34729: Portfile

File Portfile, 1.3 KB (added by mattiafrancescomoro@…, 12 years ago)
Line 
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: Portfile 82553 2011-08-15 19:22:39Z jmr@macports.org $
3
4PortSystem      1.0
5
6name            gtk2-murrine
7set my_name     murrine
8version         0.98.2
9set branch      [join [lrange [split ${version} .] 0 1] .]
10categories      gnome x11 gtk
11platforms       macosx
12maintainers     nomaintainer
13description     Murrine is a GTK2 engine
14
15long_description \
16    GTK2 engine to make your desktop look like a \"murrina\", an italian \
17    word meaning the art glass works done by Venicians glass blowers.
18
19homepage        http://www.cimitan.com/murrine/
20master_sites    gnome:sources/${my_name}/${branch}/
21distname        ${my_name}-${version}
22use_xz          yes
23
24checksums       md5     bf01e0097b5f1e164dbcf807f4b9745e
25
26depends_build \
27    port:intltool \
28    port:pkgconfig
29
30depends_lib \
31    port:gtk2 \
32    port:gettext
33
34configure.args  --enable-animation
35
36post-destroot {
37    set docdir ${prefix}/share/doc/${name}-${version}
38    xinstall -d ${destroot}${docdir}
39    xinstall -m 0644 -W ${worksrcpath} AUTHORS COPYING ChangeLog NEWS \
40        ${destroot}${docdir}
41}
42
43livecheck.type  regex
44livecheck.url   http://ftp.gnome.org/pub/gnome/sources/${my_name}/${branch}/
45livecheck.regex {LATEST-IS-(\d+(?:\.\d+)*)}