Skip to content
Snippets Groups Projects
Commit 5c4b79f6 authored by Yun Liu's avatar Yun Liu
Browse files

Add man pages for sflphone

parent 3c794062
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,8 @@ AC_CONFIG_FILES([test/Makefile]) ...@@ -46,6 +46,8 @@ AC_CONFIG_FILES([test/Makefile])
AC_CONFIG_FILES([po/Makefile \ AC_CONFIG_FILES([po/Makefile \
ringtones/Makefile]) ringtones/Makefile])
AC_CONFIG_FILES([man/Makefile])
AC_CONFIG_FILES([doc/Makefile \ AC_CONFIG_FILES([doc/Makefile \
doc/doxygen/Makefile]) doc/doxygen/Makefile])
......
...@@ -9,6 +9,7 @@ sflphone (0.9.2-0ubuntu1) hardy; urgency=low ...@@ -9,6 +9,7 @@ sflphone (0.9.2-0ubuntu1) hardy; urgency=low
* Improve spanish translation * Improve spanish translation
* Migrate to a maintained C++ DBus bindings * Migrate to a maintained C++ DBus bindings
* Clean and improve the build system * Clean and improve the build system
* Add build-dependency on Perl because we need pod2man to generate manpages
-- Yun Liu <yun.liu@savoirfairelinux.com> Wed, 26 Nov 2008 09:47:53 -0500 -- Yun Liu <yun.liu@savoirfairelinux.com> Wed, 26 Nov 2008 09:47:53 -0500
......
...@@ -8,7 +8,7 @@ Standards-Version: 3.7.3 ...@@ -8,7 +8,7 @@ Standards-Version: 3.7.3
Package: sflphone Package: sflphone
Priority: optional Priority: optional
Architecture: i386 Architecture: i386
Depends: libgcc1 , libsamplerate0 (>=0.1.2) , libdbus-glib-1-2 (>= 0.73), libexpat1 , libgtk2.0-0 , libc6 (>= 2.3.6-6) , libglib2.0-0 (>= 2.12.0) , libcommoncpp2-1.6-0 , sflphone-iax2, libgsm1 (>=1.0.10) , libspeex1 (>=1.1.12) , libdbus-1-3, libdbus-glib-1-2, dbus-c++-1 (>=0.5.0) , libsexy2 (>=0.1.11), libcppunit-1.12-0, libasound2 (>= 1.0), libpulse0 (>= 0.9.6), libccrtp1-1.6-0, libnotify1 (>= 0.4), libsexy2 (>= 0.1) Depends: libgcc1 , libsamplerate0 (>=0.1.2) , libdbus-glib-1-2 (>= 0.73), libexpat1 , libgtk2.0-0 , libc6 (>= 2.3.6-6) , libglib2.0-0 (>= 2.12.0) , libcommoncpp2-1.6-0 , sflphone-iax2, libgsm1 (>=1.0.10) , libspeex1 (>=1.1.12) , libdbus-1-3, libdbus-glib-1-2, dbus-c++-1 (>=0.5.0) , libsexy2 (>=0.1.11), libcppunit-1.12-0, libasound2 (>= 1.0), libpulse0 (>= 0.9.6), libccrtp1-1.6-0, libnotify1 (>= 0.4), libsexy2 (>= 0.1), perl (>=5.5.8)
Homepage: http://www.sflphone.org Homepage: http://www.sflphone.org
Description: SIP and IAX2 compatible softphone Description: SIP and IAX2 compatible softphone
SFLphone is meant to be a robust enterprise-class desktop phone. SFLphone is meant to be a robust enterprise-class desktop phone.
......
debian/usr/share/man/man1/sflphone.1
debian/usr/share/man/man1/sflphoned.1
debian/usr/share/man/man1/sflphone-gtk.1
...@@ -14,6 +14,7 @@ package=sflphone ...@@ -14,6 +14,7 @@ package=sflphone
CXX = g++-4.0 CXX = g++-4.0
CFLAGS = -Wall -g CFLAGS = -Wall -g
DEB_INSTALL_MANPAGES_sflphone = sflphoned.1 sflphone.1 sflphone-gtk.1
configure: configure-stamp configure: configure-stamp
configure-stamp: configure-stamp:
...@@ -49,7 +50,7 @@ clean: ...@@ -49,7 +50,7 @@ clean:
dh_testroot dh_testroot
rm -f build-arch-stamp build-indep-stamp configure-stamp rm -f build-arch-stamp build-indep-stamp configure-stamp
# Add here commands to clean up after the build process. # Add here commands to clean up after the build process.
[ ! -f Makefile ] || $(MAKE) distclean [ ! -f Makefile ] || $(MAKE) distclean
ifneq "$(wildcard /usr/share/misc/config.sub)" "" ifneq "$(wildcard /usr/share/misc/config.sub)" ""
cp -f /usr/share/misc/config.sub config.sub cp -f /usr/share/misc/config.sub config.sub
......
data_installdir=$(datadir)/man/man1
PODILES=\
sflphone-gtk.pod \
sflphoned.pod
TFILES=\
sflphone.1 \
sflphoned.1 \
sflphone-gtk.1
PODTOMAN=pod2man
EXTRA_DIST= $(PODFILES)
all: $(TFILES)
SUFFIXES=.po .mo
sflphone.1:
pod2man --section=1 --release="0.9.2" --center "" sflphone-gtk.pod > sflphone.1
sflphoned.1:
pod2man --section=1 --release="0.9.2" --center "" sflphoned.pod > sflphoned.1
sflphone-gtk.1:
pod2man --section=1 --release="0.9.2" --center "" sflphone-gtk.pod > sflphone-gtk.1
install-data-local:
@catalogs='$(TFILES)'; \
for i in $$catalogs; do \
destdir=$(data_installdir); \
$(mkinstalldirs) $(data_installdir); \
$(INSTALL_DATA) $$i $(data_installdir); \
echo "installing $$i...done"; \
done
uninstall-local:
@catalogs='$(TFILES)'; \
for i in $$catalogs; do \
destdir=$(data_installdir); \
rm -f $(data_installdir)/$$i; \
echo "removing $$i "; \
done
clean-local:
rm -rf *.1
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment