Opened 19 years ago

Last modified 8 years ago

#3950 closed defect

unalz uses a wrong build.target — at Initial Version

Reported by: minskim@… Owned by: mww@…
Priority: Normal Milestone:
Component: ports Version: 1.0
Keywords: Cc:
Port: unalz

Description

Currently the build.target of unalz is "posix", which makes it use the Microsoft CP949 encoding when extracting files. For Mac OS X correctly display file names, unalz should use UTF-8. The following patch will fix this.

Index: Portfile =============================================================== ==== RCS file: /Volumes/src/cvs/od/proj/darwinports/dports/archivers/unalz/Portfile,v retrieving revision 1.2 diff -u -r1.2 Portfile --- Portfile 4 Apr 2005 00:32:53 -0000 1.2 +++ Portfile 10 Jul 2005 02:18:58 -0000 @@ -4,6 +4,7 @@

name unalz version 0.31

+revision 1

categories archivers platforms darwin maintainers mww@…

@@ -21,7 +22,7 @@

configure {}

-build.target posix +build.target posix-utf8

destroot {

xinstall -m 755 -s ${worksrcpath}/unalz ${destroot}${prefix}/bin

Change History (0)

Note: See TracTickets for help on using tickets.