Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
5c4b79f6
Commit
5c4b79f6
authored
Dec 09, 2008
by
Yun Liu
Browse files
Add man pages for sflphone
parent
3c794062
Changes
9
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
5c4b79f6
...
...
@@ -46,6 +46,8 @@ AC_CONFIG_FILES([test/Makefile])
AC_CONFIG_FILES([po/Makefile \
ringtones/Makefile])
AC_CONFIG_FILES([man/Makefile])
AC_CONFIG_FILES([doc/Makefile \
doc/doxygen/Makefile])
...
...
debian/changelog
View file @
5c4b79f6
...
...
@@ -9,6 +9,7 @@ sflphone (0.9.2-0ubuntu1) hardy; urgency=low
* Improve spanish translation
* Migrate to a maintained C++ DBus bindings
* 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
...
...
debian/control
View file @
5c4b79f6
...
...
@@ -8,7 +8,7 @@ Standards-Version: 3.7.3
Package: sflphone
Priority: optional
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
Description: SIP and IAX2 compatible softphone
SFLphone is meant to be a robust enterprise-class desktop phone.
...
...
debian/manpages
0 → 100644
View file @
5c4b79f6
debian/usr/share/man/man1/sflphone.1
debian/usr/share/man/man1/sflphoned.1
debian/usr/share/man/man1/sflphone-gtk.1
debian/rules
View file @
5c4b79f6
...
...
@@ -14,6 +14,7 @@ package=sflphone
CXX
=
g++-4.0
CFLAGS
=
-Wall
-g
DEB_INSTALL_MANPAGES_sflphone
=
sflphoned.1 sflphone.1 sflphone-gtk.1
configure
:
configure-stamp
configure-stamp
:
...
...
@@ -49,7 +50,7 @@ clean:
dh_testroot
rm
-f
build-arch-stamp build-indep-stamp configure-stamp
# 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)" ""
cp
-f
/usr/share/misc/config.sub
config.sub
...
...
man/Makefile.am
0 → 100644
View file @
5c4b79f6
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
debi
an/README.manpages
→
m
an/README.manpages
View file @
5c4b79f6
File moved
debi
an/sflphone-gtk.pod
→
m
an/sflphone-gtk.pod
View file @
5c4b79f6
File moved
debi
an/sflphoned.pod
→
m
an/sflphoned.pod
View file @
5c4b79f6
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment