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 | PortGroup php5extension 1.0 |
---|
6 | |
---|
7 | set dist_version 1.0.9 |
---|
8 | set dist_name MagickWandForPHP-${dist_version} |
---|
9 | |
---|
10 | php5extension.build_dirs ${workpath}/${dist_name} |
---|
11 | php5extension.setup magickwand 1.0.9 |
---|
12 | categories php graphics |
---|
13 | platforms darwin |
---|
14 | maintainers nomaintainer |
---|
15 | |
---|
16 | description MagickWand for PHP |
---|
17 | long_description This module enables PHP access to the ImageMagick MagickWand API |
---|
18 | |
---|
19 | homepage http://www.magickwand.org/ |
---|
20 | master_sites http://www.magickwand.org/download/php/ |
---|
21 | distfiles ${dist_name}.tar.bz2 |
---|
22 | checksums sha256 4b3709035e6b61ded10598d3b6e1e14c0c2fc82edd945bda558ab0a7b9cabb87 |
---|
23 | use_bzip2 yes |
---|
24 | |
---|
25 | depends_lib port:php5 \ |
---|
26 | port:ImageMagick |
---|
27 | |
---|
28 | configure.args --prefix=${prefix} \ |
---|
29 | --with-php-config=${prefix}/bin/php-config \ |
---|
30 | --with-magickwand=${prefix} |
---|