Commit 14da41446149ca99cd3211a29b3ebdaf744f0787
1 parent
4db7754a
Exists in
master
and in
5 other branches
Empacotando xml com exemplo de remapeamento.
Showing
4 changed files
with
86 additions
and
0 deletions
Show diff stats
Makefile.in
| @@ -236,6 +236,7 @@ install-app: \ | @@ -236,6 +236,7 @@ install-app: \ | ||
| 236 | @$(INSTALL_DATA) conf/colors.conf $(DESTDIR)$(datarootdir)/$(PACKAGE_NAME) | 236 | @$(INSTALL_DATA) conf/colors.conf $(DESTDIR)$(datarootdir)/$(PACKAGE_NAME) |
| 237 | 237 | ||
| 238 | @$(MAKE) -C ui install | 238 | @$(MAKE) -C ui install |
| 239 | + @$(MAKE) -C charsets install | ||
| 239 | @$(MAKE) -C locale install | 240 | @$(MAKE) -C locale install |
| 240 | 241 | ||
| 241 | ifneq ($(HELP2MAN),no) | 242 | ifneq ($(HELP2MAN),no) |
| @@ -325,6 +326,7 @@ $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar: \ | @@ -325,6 +326,7 @@ $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar: \ | ||
| 325 | $(SRCDIR): \ | 326 | $(SRCDIR): \ |
| 326 | clean \ | 327 | clean \ |
| 327 | $(SRCDIR)/ui \ | 328 | $(SRCDIR)/ui \ |
| 329 | + $(SRCDIR)/charsets \ | ||
| 328 | $(SRCDIR)/src/lib3270 \ | 330 | $(SRCDIR)/src/lib3270 \ |
| 329 | $(SRCDIR)/src/pw3270 \ | 331 | $(SRCDIR)/src/pw3270 \ |
| 330 | $(SRCDIR)/src/libpw3270cpp \ | 332 | $(SRCDIR)/src/libpw3270cpp \ |
| @@ -0,0 +1,81 @@ | @@ -0,0 +1,81 @@ | ||
| 1 | +# | ||
| 2 | +# "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270 | ||
| 3 | +# (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a | ||
| 4 | +# aplicativos mainframe. Registro no INPI sob o nome G3270. | ||
| 5 | +# | ||
| 6 | +# Copyright (C) <2008> <Banco do Brasil S.A.> | ||
| 7 | +# | ||
| 8 | +# Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob | ||
| 9 | +# os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela | ||
| 10 | +# Free Software Foundation. | ||
| 11 | +# | ||
| 12 | +# Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER | ||
| 13 | +# GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO | ||
| 14 | +# A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para | ||
| 15 | +# obter mais detalhes. | ||
| 16 | +# | ||
| 17 | +# Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este | ||
| 18 | +# programa; se não, escreva para a Free Software Foundation, Inc., 59 Temple | ||
| 19 | +# Place, Suite 330, Boston, MA, 02111-1307, USA | ||
| 20 | +# | ||
| 21 | +# Contatos: | ||
| 22 | +# | ||
| 23 | +# perry.werneck@gmail.com (Alexandre Perry de Souza Werneck) | ||
| 24 | +# erico.mendonca@gmail.com (Erico Mascarenhas de Mendonça) | ||
| 25 | +# | ||
| 26 | + | ||
| 27 | +#---[ Configuration values ]------------------------------------------------------------- | ||
| 28 | + | ||
| 29 | +prefix=@prefix@ | ||
| 30 | +exec_prefix=@exec_prefix@ | ||
| 31 | +datarootdir=@datarootdir@ | ||
| 32 | + | ||
| 33 | +PACKAGE_NAME=@PACKAGE_NAME@ | ||
| 34 | +PACKAGE_VERSION=@PACKAGE_VERSION@ | ||
| 35 | +PACKAGE_TARNAME=@PACKAGE_TARNAME@ | ||
| 36 | + | ||
| 37 | +BASEDIR=@BASEDIR@ | ||
| 38 | +POTDIR=$(BASEDIR)/.pot/ui | ||
| 39 | +SRCDIR=$(BASEDIR)/.src/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION)/charsets | ||
| 40 | + | ||
| 41 | +OBJDIR=.obj | ||
| 42 | +OBJDBG=$(OBJDIR)/Debug | ||
| 43 | +OBJRLS=$(OBJDIR)/Release | ||
| 44 | + | ||
| 45 | +BINDIR=$(BASEDIR)/.bin | ||
| 46 | +BINDBG=$(BINDIR)/Debug | ||
| 47 | +BINRLS=$(BINDIR)/Release | ||
| 48 | + | ||
| 49 | +MKDIR=@MKDIR_P@ | ||
| 50 | +CC=@HOST_CC@ | ||
| 51 | +LD=@HOST_CC@ | ||
| 52 | +MSGCAT=@MSGCAT@ | ||
| 53 | +INSTALL=@INSTALL@ | ||
| 54 | +INSTALL_DATA=@INSTALL_DATA@ | ||
| 55 | + | ||
| 56 | +CFLAGS=@CFLAGS@ -Wno-deprecated-declarations `pkg-config --cflags gtk+-3.0` | ||
| 57 | +LIBS=`pkg-config --libs gtk+-3.0` | ||
| 58 | + | ||
| 59 | +#---[ Rules ]---------------------------------------------------------------------------- | ||
| 60 | + | ||
| 61 | +#---[ Targets ]---------------------------------------------------------------- | ||
| 62 | + | ||
| 63 | +install: | ||
| 64 | + | ||
| 65 | + @$(MKDIR) $(DESTDIR)$(datarootdir)/$(PACKAGE_NAME)/charsets | ||
| 66 | + @$(INSTALL_DATA) *.xml $(DESTDIR)$(datarootdir)/$(PACKAGE_NAME)/charsets | ||
| 67 | + | ||
| 68 | +$(SRCDIR): \ | ||
| 69 | + clean | ||
| 70 | + | ||
| 71 | + @$(MKDIR) $@ | ||
| 72 | + @$(INSTALL_DATA) *.xml *.in $@ | ||
| 73 | + | ||
| 74 | +cleanDebug: | ||
| 75 | + | ||
| 76 | +cleanRelease: | ||
| 77 | + | ||
| 78 | +clean: \ | ||
| 79 | + cleanDebug \ | ||
| 80 | + cleanRelease | ||
| 81 | + |
configure.ac
| @@ -453,6 +453,7 @@ AC_CONFIG_FILES(src/pw3270/common/Makefile) | @@ -453,6 +453,7 @@ AC_CONFIG_FILES(src/pw3270/common/Makefile) | ||
| 453 | AC_CONFIG_FILES(src/libpw3270cpp/Makefile) | 453 | AC_CONFIG_FILES(src/libpw3270cpp/Makefile) |
| 454 | 454 | ||
| 455 | AC_CONFIG_FILES(ui/Makefile) | 455 | AC_CONFIG_FILES(ui/Makefile) |
| 456 | +AC_CONFIG_FILES(charsets/Makefile) | ||
| 456 | AC_CONFIG_FILES(branding/Makefile) | 457 | AC_CONFIG_FILES(branding/Makefile) |
| 457 | AC_CONFIG_FILES(locale/Makefile) | 458 | AC_CONFIG_FILES(locale/Makefile) |
| 458 | 459 |
rpm/pw3270.spec
| @@ -268,6 +268,8 @@ rm %{buildroot}/%{_datadir}/pw3270/ui/*rexx*.xml | @@ -268,6 +268,8 @@ rm %{buildroot}/%{_datadir}/pw3270/ui/*rexx*.xml | ||
| 268 | %{_datadir}/pw3270/colors.conf | 268 | %{_datadir}/pw3270/colors.conf |
| 269 | %{_datadir}/pw3270/pw3270.png | 269 | %{_datadir}/pw3270/pw3270.png |
| 270 | %{_datadir}/pw3270/pw3270-logo.png | 270 | %{_datadir}/pw3270/pw3270-logo.png |
| 271 | +%{_datadir}/pw3270/charsets/bracket.xml | ||
| 272 | + | ||
| 271 | %dir %{_libdir}/pw3270-plugins | 273 | %dir %{_libdir}/pw3270-plugins |
| 272 | 274 | ||
| 273 | %files -n lib3270-%{_libvrs} | 275 | %files -n lib3270-%{_libvrs} |