Ticket #46317: Portfile

File Portfile, 837 bytes (added by RJVB (René Bertin), 9 years ago)

draft portfile for libpgf

Line 
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 120204 2014-05-19 15:26:03Z nicos@macports.org $
3
4PortSystem          1.0
5
6fetch.type          svn
7svn.url             svn://svn.code.sf.net/p/libpgf/code/trunk/libpgf
8svn.revision        127
9
10name                libpgf
11version             6.12.24
12categories          devel
13maintainers         rjvbertin@gmail.com
14license             GPL-2+ LGPL-2.1+
15description         Progressive Graphics File library
16platforms           darwin
17
18post-fetch {
19    move ${workpath}/libpgf ${worksrcpath}
20}
21
22pre-configure {
23   
24    system "cd ${worksrcpath} ; touch NEWS AUTHORS ; glibtoolize --copy --force && \
25        aclocal && \
26        automake --gnu --add-missing --copy && \
27        autoconf"
28}
29