Index: Portfile
===================================================================
--- Portfile	(revision 27504)
+++ Portfile	(working copy)
@@ -3,6 +3,7 @@
 PortSystem		1.0
 name			hrsh2csv
 version			1.3
+revision		1
 description		converts Hours pdb files into CSV text files
 long_description	Hours is a time-tracking utility for the PalmOS. \
 	This utility converts Hours for PalmOS database files into       \
@@ -16,8 +17,13 @@
 
 use_configure		no
 post-extract {
-	reinplace "s|-O2 -D__MAC2PC_CONVERSION__|-O2|" ${worksrcpath}/Makefile
 	reinplace "s|prefix = /usr/local|prefix = ${destroot}${prefix}|" ${worksrcpath}/Makefile
 }
+
+# For PowerPC, remove the endian conversion since PDBs are big endian.
+platform powerpc {
+	reinplace "s|-O2 -D__MAC2PC_CONVERSION__|-O2|" ${worksrcpath}/Makefile
+}
+
 destroot.args		mandir=${destroot}${prefix}/share/man/man1
 

