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 73571 2010-11-18 19:21:43Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name CImg |
---|
7 | version 1.5.1 |
---|
8 | categories devel |
---|
9 | platforms darwin |
---|
10 | maintainers workisfun.ru:ivan |
---|
11 | supported_archs noarch |
---|
12 | license CeCILL-C CeCILL |
---|
13 | |
---|
14 | description C++ Template Image Processing Toolkit |
---|
15 | |
---|
16 | long_description Open source, C++ toolkit for image processing |
---|
17 | |
---|
18 | homepage http://cimg.sourceforge.net/ |
---|
19 | master_sites sourceforge:cimg |
---|
20 | use_zip yes |
---|
21 | |
---|
22 | checksums sha1 fe42a885499a001709ce1dee9862f5d5026f8c20 |
---|
23 | |
---|
24 | use_configure no |
---|
25 | |
---|
26 | build {} |
---|
27 | |
---|
28 | destroot { |
---|
29 | xinstall -m 644 ${worksrcpath}/CImg.h ${destroot}${prefix}/include |
---|
30 | |
---|
31 | set docdir ${destroot}${prefix}/share/doc/${name} |
---|
32 | xinstall -d ${docdir} |
---|
33 | xinstall -m 644 -W ${worksrcpath} \ |
---|
34 | Licence_CeCILL-C_V1-en.txt \ |
---|
35 | Licence_CeCILL_V2-en.txt \ |
---|
36 | README.txt \ |
---|
37 | ${docdir} |
---|
38 | } |
---|
39 | |
---|
40 | livecheck.type regex |
---|
41 | livecheck.url http://sourceforge.net/projects/cimg/files/ |
---|
42 | livecheck.regex /CImg-(\[0-9.\]+)${extract.suffix} |
---|