Commit 6a4ea943bffa358fe18967b73f6ae90107930b97
1 parent
6b4ec314
Exists in
master
and in
5 other branches
Confirmando empacotamento
Showing
3 changed files
with
10 additions
and
17 deletions
Show diff stats
android/Makefile
| ... | ... | @@ -36,10 +36,11 @@ ANT=/usr/bin/ant |
| 36 | 36 | ANDROIDSDK=/opt/android-sdk |
| 37 | 37 | |
| 38 | 38 | NDKBUILD=/opt/android-ndk-r8/ndk-build |
| 39 | -CLASSPATH=br/com/bb/pw3270 | |
| 40 | 39 | MKDIR=/bin/mkdir -p |
| 41 | 40 | CONVERT=rsvg-convert |
| 42 | -JAVASRCDIR=src/br/com/bb/pw3270 | |
| 41 | + | |
| 42 | +CLASSPATH=br/com/bb/pw3270 | |
| 43 | +JAVASRCDIR=src/$(CLASSPATH) | |
| 43 | 44 | |
| 44 | 45 | RESOLUTION=xhdpi mdpi ldpi hdpi |
| 45 | 46 | ... | ... |
po/pt_BR.po
| ... | ... | @@ -5,7 +5,7 @@ msgid "" |
| 5 | 5 | msgstr "" |
| 6 | 6 | "Project-Id-Version: pw3270 5.0\n" |
| 7 | 7 | "Report-Msgid-Bugs-To: \n" |
| 8 | -"POT-Creation-Date: 2012-08-07 14:57-0300\n" | |
| 8 | +"POT-Creation-Date: 2012-08-09 16:58-0300\n" | |
| 9 | 9 | "PO-Revision-Date: 2012-08-03 08:52-0300\n" |
| 10 | 10 | "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n" |
| 11 | 11 | "Language-Team: Português do Brasil <>\n" |
| ... | ... | @@ -145,7 +145,7 @@ msgstr "Cancelado pelo usuário" |
| 145 | 145 | msgid "Cannot create socket handle" |
| 146 | 146 | msgstr "Não foi possível criar um manipulador de socket" |
| 147 | 147 | |
| 148 | -#: session.c:324 | |
| 148 | +#: session.c:323 | |
| 149 | 149 | #, c-format |
| 150 | 150 | msgid "Cannot find charset \"%s\", using defaults" |
| 151 | 151 | msgstr "Não encontrei codificação \"%s\", usando defaults" | ... | ... |
pw3270.nsi.in
| ... | ... | @@ -103,8 +103,8 @@ SubSection "@PACKAGE@" SecMain |
| 103 | 103 | WriteRegStr HKCU "Software\@PACKAGE@" "" $INSTDIR |
| 104 | 104 | |
| 105 | 105 | # Main library |
| 106 | - file "/oname=$SYSDIR\lib3270.dll" ".bin\Release\lib\lib3270.dll" | |
| 107 | - file "/oname=$SYSDIR\libpw3270.dll" ".bin\Release\lib\libpw3270.dll" | |
| 106 | + file "/oname=$SYSDIR\lib3270.dll" ".bin\Release\lib3270.dll" | |
| 107 | + file "/oname=$SYSDIR\libpw3270.dll" ".bin\Release\libpw3270.dll" | |
| 108 | 108 | |
| 109 | 109 | sectionEnd |
| 110 | 110 | |
| ... | ... | @@ -141,20 +141,12 @@ Section /o "Software Development Kit" SecSDK |
| 141 | 141 | CreateDirectory "$INSTDIR\sdk\include\lib3270" |
| 142 | 142 | |
| 143 | 143 | file "/oname=$INSTDIR\sdk\include\lib3270.h" "src\include\lib3270.h" |
| 144 | + file "/oname=$INSTDIR\sdk\include\pw3270.h" "src\include\pw3270.h" | |
| 145 | + file "/oname=$INSTDIR\sdk\include\v3270.h" "src\include\v3270.h" | |
| 146 | + | |
| 144 | 147 | file "/oname=$INSTDIR\sdk\include\lib3270\config.h" "src\include\lib3270\config.h" |
| 145 | 148 | file "/oname=$INSTDIR\sdk\include\lib3270\rules.mak" "src\include\rules.mak" |
| 146 | 149 | |
| 147 | - file "/oname=$INSTDIR\sdk\include\lib3270\config.h" "src\include\lib3270\config.h" | |
| 148 | - file "/oname=$INSTDIR\sdk\include\lib3270\macros.h" "src\include\lib3270\macros.h" | |
| 149 | - file "/oname=$INSTDIR\sdk\include\lib3270\selection.h" "src\include\lib3270\selection.h" | |
| 150 | - file "/oname=$INSTDIR\sdk\include\lib3270\v3270.h" "src\include\lib3270\v3270.h" | |
| 151 | - file "/oname=$INSTDIR\sdk\include\lib3270\actions.h" "src\include\lib3270\actions.h" | |
| 152 | - file "/oname=$INSTDIR\sdk\include\lib3270\html.h" "src\include\lib3270\html.h" | |
| 153 | - file "/oname=$INSTDIR\sdk\include\lib3270\log.h" "src\include\lib3270\log.h" | |
| 154 | - file "/oname=$INSTDIR\sdk\include\lib3270\popup.h" "src\include\lib3270\popup.h" | |
| 155 | - file "/oname=$INSTDIR\sdk\include\lib3270\session.h" "src\include\lib3270\session.h" | |
| 156 | - file "/oname=$INSTDIR\sdk\include\lib3270\trace.h" "src\include\lib3270\trace.h" | |
| 157 | - | |
| 158 | 150 | SectionEnd |
| 159 | 151 | |
| 160 | 152 | # create a section to define what the uninstaller does. | ... | ... |