From 0c22984ece9285a1111f4ffce457ff98cd009fa6 Mon Sep 17 00:00:00 2001
From: Emanuele Giaquinta <emanuele.giaquinta@gmail.com>
Date: Sun, 24 Jul 2016 23:41:58 +0300
Subject: [PATCH 1/2] Add modeline, untabify and reflow configure.args.
---
Portfile | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/Portfile b/Portfile
index 4cb58d0..d63bd06 100644
a
|
b
|
|
| 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 |
1 | 2 | # $Id: Portfile 150362 2016-07-17 21:46:06Z cal@macports.org $ |
2 | 3 | |
3 | 4 | PortSystem 1.0 |
… |
… |
use_bzip2 yes |
26 | 27 | checksums rmd160 333d281455b7641a59d424e253832035e95b572d \ |
27 | 28 | sha256 75270ed72bc5895a64a1d7392bf45a622204192371c3965bd3dd978dc088956b |
28 | 29 | depends_build \ |
29 | | port:pkgconfig |
| 30 | port:pkgconfig |
30 | 31 | |
31 | 32 | # urxvt also depends on xorg-libX11, xrender and fontconfig but all these ports are in the dependency tree of Xft2 |
32 | 33 | depends_lib \ |
33 | | port:Xft2 \ |
34 | | port:ncurses \ |
35 | | path:bin/perl:perl5 |
| 34 | port:Xft2 \ |
| 35 | port:ncurses \ |
| 36 | path:bin/perl:perl5 |
36 | 37 | |
37 | 38 | # clang++ 3.0 produces unstable urxvt binary which sometimes causes errors like: |
38 | 39 | # "terminate called throwing an exceptionAbort trap: 6" |
… |
… |
if {[string match *clang* ${configure.cxx}]} { |
46 | 47 | configure.ldflags-append -stdlib=${configure.cxx_stdlib} |
47 | 48 | } |
48 | 49 | |
49 | | configure.args --enable-everything --enable-256-color --with-codesets=all \ |
50 | | --disable-utmp --disable-pixbuf \ |
| 50 | configure.args --enable-everything \ |
| 51 | --enable-256-color \ |
| 52 | --with-codesets=all \ |
| 53 | --disable-utmp \ |
| 54 | --disable-pixbuf \ |
51 | 55 | --mandir=${prefix}/share/man |
52 | 56 | |
53 | 57 | use_parallel_build yes |