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 osslsigncode |
---|
7 | version 1.4 |
---|
8 | categories security devel |
---|
9 | platforms darwin |
---|
10 | maintainers gwmail.gwu.edu:egall openmaintainer |
---|
11 | license GPL-2+ |
---|
12 | |
---|
13 | description ${name} is a small tool that implements part of the functionality \ |
---|
14 | of the Microsoft tool signcode.exe |
---|
15 | |
---|
16 | long_description ${description} - more exactly the Authenticode \ |
---|
17 | signing and timestamping. But ${name} is based on OpenSSL and cURL, \ |
---|
18 | and thus should be able to compile on most platforms where these exist. |
---|
19 | |
---|
20 | homepage http://osslsigncode.sourceforge.net/ |
---|
21 | master_sites sourceforge |
---|
22 | |
---|
23 | checksums md5 018b12b3efc4a5250dd3977c2bada3cd \ |
---|
24 | sha1 ac63d62abddfcb37597640da96f61f496bee6086 \ |
---|
25 | rmd160 58e5031f2f94b8f6bcdf90a6beacf19758d7e429 \ |
---|
26 | sha256 721eddade1571fcde54e7f5c21f961dacb990c19f9bdb05c4a7aaeb269979069 |
---|
27 | |
---|
28 | depends_build-append port:pkgconfig |
---|
29 | depends_lib-append port:openssl |
---|
30 | |
---|
31 | variant curl description {Build with curl support} { |
---|
32 | depends_lib-append port:curl |
---|
33 | configure.args-append --with-curl |
---|
34 | } |
---|