Changes between Initial Version and Version 2 of Ticket #778
- Timestamp:
- Mar 24, 2016, 1:28:50 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #778
-
Property
Status
changed from
new
toclosed
-
Property
Resolution
changed from
to
fixed
- Property Port fortune added
-
Property
Status
changed from
-
Ticket #778 – Description
initial v2 1 1 fortune will try and use bzip2 on the fortune datfiles like so.. 2 2 3 {{{ 3 4 ---> Fetching fortune 4 5 ---> Verifying checksum for fortune … … 6 7 Warning: No checksum recorded for fortune-starwars.tgz 7 8 ---> Extracting fortune 8 Error: Target com.apple.extract returned: shell command "cd "/Users/yeled/Documents/DEV/ 9 darwinports/dports/games/fortune/work" && bzip2 -dc /opt/local/var/db/dports/distfiles/ 10 fortune-starwars.tgz | tar -xf -" returned error 1 11 Command output: bzip2: /opt/local/var/db/dports/distfiles/fortune-starwars.tgz is not a bzip2 12 file. 9 Error: Target com.apple.extract returned: shell command "cd "/Users/yeled/Documents/DEV/darwinports/dports/games/fortune/work" && bzip2 -dc /opt/local/var/db/dports/distfiles/fortune-starwars.tgz | tar -xf -" returned error 1 10 Command output: bzip2: /opt/local/var/db/dports/distfiles/fortune-starwars.tgz is not a bzip2 file. 13 11 tar: End of archive volume 1 reached 14 12 tar: Sorry, unable to determine archive format. 15 13 }}} 16 14 17 15 and here is a patch to fix this, 18 16 17 {{{ 19 18 --- Portfile.old Thu Aug 14 22:26:19 2003 20 19 +++ Portfile Thu Aug 14 22:25:31 2003 … … 30 29 # zero, then set them in each variant, and then check them all in post-extract 31 30 set plusstarwars 0 31 }}}