Commit 2711767af9ab0f417c67971f707adf837ca32d7f

Authored by Perry Werneck
Committed by GitHub
2 parents 523def3b 5489a42a
Exists in develop

Merge pull request #23 from PerryWerneck/develop

Updating .deb control file
configure.ac
... ... @@ -127,6 +127,7 @@ case "$host" in
127 127  
128 128 app_cv_static='no'
129 129  
  130 + AC_CONFIG_FILES(debian/control)
130 131 esac
131 132  
132 133 AC_SUBST(OSNAME,$app_cv_osname)
... ...
debian/control
... ... @@ -8,7 +8,7 @@ Package: libv3270
8 8 Architecture: any
9 9 Section: libs
10 10 Depends: ${shlibs:Depends}, ${misc:Depends}
11   -Provides: libv3270 (= ${binary:Version})
  11 +Provides: libv3270 (= ${binary:Version}), libv3270 (= 5.4)
12 12 Description: TN3270 Access library.
13 13 3270 Virtual Terminal for GTK.
14 14  
... ...
debian/control.in 0 → 100644
... ... @@ -0,0 +1,35 @@
  1 +Source: libv3270
  2 +Section: unknown
  3 +Priority: optional
  4 +Maintainer: Perry Werneck <perry.werneck@gmail.com>
  5 +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, gettext, libssl-dev, libssl-dev, lib3270-dev, libgtk-3-dev, imagemagick
  6 +
  7 +Package: libv3270
  8 +Architecture: any
  9 +Section: libs
  10 +Depends: ${shlibs:Depends}, ${misc:Depends}
  11 +Provides: libv3270 (= ${binary:Version}), @PACKAGE_NAME@ (= @PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@)
  12 +Description: TN3270 Access library.
  13 + 3270 Virtual Terminal for GTK.
  14 +
  15 +Package: libv3270-dev
  16 +Architecture: any
  17 +Section: libdevel
  18 +Depends: ${misc:Depends}, pkg-config, libgtk-3-dev, lib3270-dev, libv3270 (= ${binary:Version})
  19 +Provides: libv3270-dev (= ${binary:Version})
  20 +Description: TN3270 Access library development files.
  21 + 3270 Virtual Terminal for GTK development files.
  22 +
  23 +Package: libv3270-glade
  24 +Architecture: any
  25 +Section: libdevel
  26 +Depends: ${misc:Depends}, libv3270-dev (= ${binary:Version})
  27 +Description: Glade files for v3270 library.
  28 + Glade files for 3270 Virtual Terminal for GTK.
  29 +
  30 +Package: libv3270-dbg
  31 +Architecture: any
  32 +Depends: libv3270 (= ${binary:Version})
  33 +Description: Debugging symbols for GTK 3270 virtual terminal
  34 + This package contains the debugging symbols for libv3270.
  35 +
... ...