Ticket #16988: Portfile

File Portfile, 1.1 KB (added by mroman@…, 16 years ago)
Line 
1# -*- coding: utf-8;
2# $Id$
3
4PortSystem 1.0
5
6name       djview
7version    4.4
8categories      aqua graphics www
9platforms       darwin
10maintainers     nomaintainer
11
12description     DjVu files viewer.
13long_description            DjVu can advantageously replace PDF, PS, TIFF,JPEG, and GIF for \
14                            distributing scanned documents, digital documents, or high-resolution \
15                            pictures. DjVu content downloads faster, displays and renders faster, \
16                            looks nicer on a screen and consume less client resources than competing \
17                            formats.
18
19homepage        http://djvu.sourceforge.net/
20master_sites    sourceforge:djvu
21distname        ${name}4-${version}
22checksums       md5 466225c5546aed90008d612cdb490a4e
23use_parallel_build      yes
24
25depends_lib     port:djvulibre \
26                port:pkgconfig \
27                port:qt4-mac
28
29configure.args --disable-nsdejavu \
30                --disable-desktopfiles \
31                QMAKESPEC=macx-g++
32
33destroot {
34    xinstall -m 755 -d ${destroot}${applications_dir}
35    copy ${worksrcpath}/src/djview.app ${destroot}${applications_dir}
36}