Commit 7b076f4e38b718b050ad2dec4b30097f4c2a2f92

Authored by perry.werneck@gmail.com
1 parent d16b3609

Geração dos .deb no build service apresentou problemas depois das ultimas alterações

Makefile.in
... ... @@ -321,6 +321,7 @@ distclean: clean
321 321 @rm -f src/include/lib3270/config.h
322 322 @rm -f src/pw3270/uiparser/Makefile
323 323 @rm -fr autom4te.cache
  324 + @rm -fr debian
324 325 @rm -f *.pc
325 326 @rm -f $(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar*
326 327 @find ./src -name "Makefile" -exec rm -f {} \;
... ...
debian.control
... ... @@ -2,13 +2,25 @@ Source: pw3270
2 2 Section: unknown
3 3 Priority: optional
4 4 Maintainer: Perry Werneck <perry.werneck@gmail.com>
5   -Build-Depends: debhelper (>= 7), autotools-dev, autoconf, libgtk-3-dev, gettext, libssl-dev, desktop-file-utils
  5 +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, libgtk-3-dev, gettext, libssl-dev, desktop-file-utils, xsltproc, librsvg2-bin
6 6  
7 7 Package: pw3270
8 8 Architecture: any
9   -Depends: ${shlibs:Depends}
  9 +Depends: ${shlibs:Depends}, lib3270 (= ${binary:Version})
10 10 Description: IBM 3270 Terminal emulator for gtk
11 11 IBM 3270 terminal emulator gtk. It can be used to communicate with
12 12 any IBM host that supports 3270-style connections over TELNET.
13 13  
  14 +Package: lib3270
  15 +Architecture: any
  16 +Section: libs
  17 +Depends: ${misc:Depends}, binutils (>= 2.14.90.0.7)
  18 +Description: pw3270 shared libraries.
  19 + This package contains the pw3270 shared library for the core application.
14 20  
  21 +Package: lib3270-dev
  22 +Architecture: any
  23 +Section: libdevel
  24 +Depends: ${misc:Depends}, lib3270 (= ${binary:Version})
  25 +Description: lib3270 development files.
  26 + This package contains the files needed for development of lib3270 based applications
... ...
debian/compat
No preview for this file type
debian/control
... ... @@ -1,26 +0,0 @@
1   -Source: pw3270
2   -Section: unknown
3   -Priority: optional
4   -Maintainer: Perry Werneck <perry.werneck@gmail.com>
5   -Build-Depends: debhelper (>= 7), autotools-dev, autoconf, libgtk-3-dev, gettext, libssl-dev, desktop-file-utils, xsltproc, librsvg2-bin
6   -
7   -Package: pw3270
8   -Architecture: any
9   -Depends: ${shlibs:Depends}, lib3270 (= ${binary:Version})
10   -Description: IBM 3270 Terminal emulator for gtk
11   - IBM 3270 terminal emulator gtk. It can be used to communicate with
12   - any IBM host that supports 3270-style connections over TELNET.
13   -
14   -Package: lib3270
15   -Architecture: any
16   -Section: libs
17   -Depends: ${misc:Depends}, binutils (>= 2.14.90.0.7)
18   -Description: pw3270 shared libraries.
19   - This package contains the pw3270 shared library for the core application.
20   -
21   -Package: lib3270-dev
22   -Architecture: any
23   -Section: libdevel
24   -Depends: ${misc:Depends}, lib3270 (= ${binary:Version})
25   -Description: lib3270 development files.
26   - This package contains the files needed for development of lib3270 based applications
debian/postinst
makedeb.sh
... ... @@ -5,7 +5,13 @@ VERSION=$(grep AC_INIT configure.ac | cut -d[ -f3 | cut -d] -f1)
5 5 TIMESTAMP=$(LANG=en_US date)
6 6 . ./revision
7 7  
8   -rm -f debian/changelog
  8 +rm -fr debian
  9 +mkdir debian
  10 +
  11 +echo 7 > debian/compat
  12 +cp debian.control debian/control
  13 +cp debian.rules debian/control
  14 +
9 15 EDITOR=true dch --preserve -v $VERSION-$PACKAGE_LEVEL -u low --create --package pw3270
10 16 sed -i "s@UNRELEASED@unstable@;s@Initial release. (Closes: #XXXXXX)@SVN Revision $PACKAGE_REVISION@" debian/changelog
11 17  
... ...
po/pt_BR.po
... ... @@ -5,7 +5,7 @@ msgid &quot;&quot;
5 5 msgstr ""
6 6 "Project-Id-Version: pw3270 5.0\n"
7 7 "Report-Msgid-Bugs-To: \n"
8   -"POT-Creation-Date: 2012-09-12 12:27-0300\n"
  8 +"POT-Creation-Date: 2012-09-12 17:29-0300\n"
9 9 "PO-Revision-Date: 2012-09-05 09:05-0300\n"
10 10 "Last-Translator: Perry Werneck <perry.werneck@gmail.com>\n"
11 11 "Language-Team: Português do Brasil <>\n"
... ...
src/lib3270/Makefile.in
... ... @@ -186,3 +186,4 @@ clean:
186 186 @rm -f version.c
187 187 @rm -f fallbacks.c
188 188 @rm -f lib3270.pot
  189 + @rm -fr debian
... ...
src/pw3270/Makefile.in
... ... @@ -203,5 +203,6 @@ clean: clean-common
203 203 @rm -fr uiparser/.obj
204 204 @rm -fr v3270/.bin
205 205 @rm -fr v3270/.obj
  206 + @rm -fr debian
206 207 @rm -f $(PACKAGE_NAME).desktop
207 208  
... ...