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: Portfile 126929 2014-10-17 20:17:55Z khindenburg@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name gmake |
---|
7 | version 4.1 |
---|
8 | categories devel |
---|
9 | maintainers gmail.com:stuartwesterman openmaintainer |
---|
10 | description GNU Make |
---|
11 | long_description \ |
---|
12 | Make is a tool which controls the generation of executables and \ |
---|
13 | other non-source files of a program from the program's source files.\ |
---|
14 | Make gets its knowledge of how to build your program from a file \ |
---|
15 | called the makefile, which lists each of the non-source files and \ |
---|
16 | how to compute it from other files. When you write a program, you \ |
---|
17 | should write a makefile for it, so that it is possible to use Make \ |
---|
18 | to build and install the program. |
---|
19 | |
---|
20 | homepage http://www.gnu.org/software/make/make.html |
---|
21 | license GPL-3 |
---|
22 | installs_libs no |
---|
23 | platforms darwin |
---|
24 | distname make-${version} |
---|
25 | master_sites gnu:make |
---|
26 | use_bzip2 yes |
---|
27 | |
---|
28 | checksums rmd160 0f322d6c28867ea817f7d02c57e635c8ef556909 \ |
---|
29 | sha256 0bc7613389650ee6a24554b52572a272f7356164fd2c4132b0bcf13123e4fca5 |
---|
30 | |
---|
31 | depends_lib port:gettext port:libiconv |
---|
32 | configure.args --program-prefix=g --without-guile |
---|
33 | |
---|
34 | variant guile description "Enable GNU Guile extensions" { |
---|
35 | depends_lib-append port:guile |
---|
36 | configure.args --program-prefix=g --with-guile |
---|
37 | } |
---|
38 | |
---|
39 | test.run yes |
---|
40 | test.target check |
---|