|
Revision 2691, 1.5 kB
(checked in by kris, 28 hours ago)
|
|
Unbreak the OO i18n version, since the port has been fixed now.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/bash |
|---|
| 2 | # PBI Building template |
|---|
| 3 | # Copyright 2007 PC-BSD Software |
|---|
| 4 | ############################################################################## |
|---|
| 5 | |
|---|
| 6 | # Program Name |
|---|
| 7 | PROGNAME="OpenOffice-i18n" |
|---|
| 8 | |
|---|
| 9 | # Program Website |
|---|
| 10 | PROGWEB="http://www.openoffice.org" |
|---|
| 11 | |
|---|
| 12 | # Program Author |
|---|
| 13 | PROGAUTHOR="The OpenOffice Team" |
|---|
| 14 | |
|---|
| 15 | # Default Icon (Relative to overlay-dir) |
|---|
| 16 | PROGICON="share/icons/directory_logo.png" |
|---|
| 17 | |
|---|
| 18 | # Port we want to build |
|---|
| 19 | PBIPORT="/usr/ports/editors/openoffice.org-2" |
|---|
| 20 | |
|---|
| 21 | # Set to "Auto or NONE" to have the PBI creator auto-populate libs or not |
|---|
| 22 | PROGLIBS="Auto" |
|---|
| 23 | |
|---|
| 24 | # PBI Update URL set to "" or the http:// URL of update checker |
|---|
| 25 | PBIUPDATE="http://update.pbidir.com" |
|---|
| 26 | |
|---|
| 27 | # Other Ports we need built (One per line) |
|---|
| 28 | OTHERPORT="" |
|---|
| 29 | |
|---|
| 30 | # Enter your custom make options here |
|---|
| 31 | MAKEOPTS="WITH_CUPS=yes |
|---|
| 32 | WITHOUT_GNOMEVFS= yes |
|---|
| 33 | WITHOUT_MOZILLA= yes |
|---|
| 34 | WITH_KDE=yes |
|---|
| 35 | LOCALIZED_LANG=alllangs" |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | #LOCALIZED_LANG=all |
|---|
| 39 | # Option to include all the extra langs |
|---|
| 40 | |
|---|
| 41 | # Build Key - Change this to anything else to trigger a rebuild |
|---|
| 42 | # - The rebuild will take place even if port is still the same ver |
|---|
| 43 | BUILDKEY="23" |
|---|
| 44 | |
|---|
| 45 | # If this port has a non-standard port version variable in Makefile, then |
|---|
| 46 | # list the key here such as "OOOVERSION=" |
|---|
| 47 | VERKEY="OOOVERSION=" |
|---|
| 48 | |
|---|
| 49 | # Set this to YES to mark a port / module as broken |
|---|
| 50 | #PORTBROKE="YES" ; export PORTBROKE |
|---|
| 51 | |
|---|
| 52 | # Don't build this PBI on certian processors (i386 / amd64) |
|---|
| 53 | ARCHIGNORE="amd64" ; export ARCHIGNORE |
|---|
| 54 | |
|---|
| 55 | export PBIPORT MAKEOPTS PROGNAME PROGWEB PROGAUTHOR OTHERPORT PROGICON PROGLIBS PBIUPDATE BUILDKEY VERKEY |
|---|