Projects
New Ticket     Wiki     Browse Source     Timeline     Roadmap     Bug Reports     Search

root/trunk/dports/devel/libgpg-error/Portfile

Revision 43423, 1.2 KB (checked in by devans@…, 4 weeks ago)

libgpg-error: update to version 1.7.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
Line 
1# $Id$
2
3PortSystem      1.0
4
5name            libgpg-error
6version         1.7
7categories      devel
8platforms       darwin
9maintainers     nomaintainer
10homepage        http://www.gnupg.org/
11description     Common error values for all GnuPG components
12
13long_description \
14    libgpg-error is a library that defines common error values for all GnuPG components. \
15    Among these are GPG, GPGSM, GPGME, GPG-Agent, libgcrypt, pinentry, SmartCard Daemon \
16    and possibly more in the future.
17
18master_sites    gnupg
19use_bzip2       yes
20
21depends_lib     port:libiconv \
22                port:gettext
23
24checksums       md5     62c0d09d1e76c5b6da8fff92314c4665 \
25                sha1    bf8c6babe1e28cae7dd6374ca24ddcc42d57e902 \
26                rmd160  6f9004baf8e707b5995a276b5a454102405a6afc
27
28test.run        yes
29test.target     check
30
31post-destroot {
32    set docdir ${prefix}/share/doc/${name}-${version}
33    xinstall -d ${destroot}${docdir}
34    xinstall -m 0644 -W ${worksrcpath} ABOUT-NLS AUTHORS COPYING COPYING.LIB NEWS README \
35        THANKS VERSION ${destroot}${docdir}
36}
37
38livecheck.check regex
39livecheck.url   http://mirrors.rootmode.com/ftp.gnupg.org/${name}/?O=D
40livecheck.regex ${name}-(\\d+\\.\\d+)
Note: See TracBrowser for help on using the browser.