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$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name girara |
---|
7 | version 0.2.0 |
---|
8 | categories gtk |
---|
9 | platforms darwin |
---|
10 | license zlib |
---|
11 | maintainers gmail.com:starkhalo |
---|
12 | description Cross-platform widget toolkit based on GTK+ |
---|
13 | long_description \ |
---|
14 | girara is a library that implements a user interface that focuses on \ |
---|
15 | simplicity and minimalism. Currently based on GTK+, a cross-platform \ |
---|
16 | widget toolkit, it proves an interface that focueses on three main com- \ |
---|
17 | ponents: A so-called view widget that represents the actual application \ |
---|
18 | (e.g. a website (browser), an image (image viewer) or the document \ |
---|
19 | (document viewer)), an input bar that is used to execute commands of \ |
---|
20 | the application and the status bar which provides the user with current \ |
---|
21 | information. |
---|
22 | |
---|
23 | homepage http://pwmt.org/projects/${name}/ |
---|
24 | |
---|
25 | master_sites ${homepage}download/ |
---|
26 | |
---|
27 | checksums \ |
---|
28 | rmd160 e89c075c353548740ab9e3de1d8e6ccea61823f6 \ |
---|
29 | sha256 d14b54cb04d81ba3b84ad41c5e68951d250b455d0862add1c987e3af9e2e174d |
---|
30 | |
---|
31 | patchfiles patch-Makefile.diff \ |
---|
32 | patch-config.mk.diff |
---|
33 | |
---|
34 | depends_lib path:lib/libglib-2.0.dylib:glib2 \ |
---|
35 | port:gtk3 \ |
---|
36 | port:intltool |
---|
37 | |
---|
38 | use_configure no |
---|
39 | |
---|
40 | variant universal {} |
---|
41 | |
---|
42 | build.args PREFIX=${prefix} |
---|
43 | build.env CC=${configure.cc} \ |
---|
44 | CXX=${configure.cxx} \ |
---|
45 | CPP=${configure.cpp} \ |
---|
46 | CFLAGS="[get_canonical_archflags cc]" \ |
---|
47 | LDFLAGS="[get_canonical_archflags ld]" |
---|
48 | |
---|
49 | eval destroot.env ${build.env} |
---|
50 | eval destroot.args ${build.args} |
---|
51 | |
---|
52 | livecheck.type regex |
---|
53 | livecheck.url ${master_sites} |
---|
54 | livecheck.regex (\\d\\.\\d\\.\\d) |
---|