Makefile revision 15999
f743002678eb67b99bbc29fee116b65d9530fec0wrowe##
80833bb9a1bf25dcf19e814438a4b311d2e1f4cffuankg# Makefile for generateing man page tarballs that are used in each of the
a34684a59b60a4173c25035d0c627ef17e6dc215rpluem# SUNW*.spec files
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic#
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic# Generates : $(PACKAGE)-manpages-$(MANPAGE_VERSION).tar.gz
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic# e.g. sun-manpage-tarballs/*.tar.gz
1337c7673efc1f80f634139fbad7cbb98a0dc657ylavic#
4da61833a1cbbca94094f9653fd970582b97a72etrawick# Usage :
4da61833a1cbbca94094f9653fd970582b97a72etrawick# "make" : Rebuilds all man page tarballs
4da61833a1cbbca94094f9653fd970582b97a72etrawick#
4da61833a1cbbca94094f9653fd970582b97a72etrawick# "make check-used" : Outputs list of man pages not being used.
4da61833a1cbbca94094f9653fd970582b97a72etrawick#
4789804be088bcd86ae637a29cdb7fda25169521jailletc# "make check-version" : Prints current man page tarball version
4789804be088bcd86ae637a29cdb7fda25169521jailletc#
4789804be088bcd86ae637a29cdb7fda25169521jailletc# "make $(PACKAGE)-manpages-$(MANPAGE_VERSION).tar.gz
4789804be088bcd86ae637a29cdb7fda25169521jailletc# e.g. "make SUNWgnome-panel-manpages-0.1.tar.gz"
e50c3026198fd496f183cda4c32a202925476778covener# will only generate SUNWgnome-panel's man page tarball
e50c3026198fd496f183cda4c32a202925476778covener#
e50c3026198fd496f183cda4c32a202925476778covener# For each package that contains man pages.
5b88c8507d5ef6d0c4cfbc78230294968175b638minfrin# - Ensure all relevant man pages for your package are located under the
5b88c8507d5ef6d0c4cfbc78230294968175b638minfrin# correct man page section dir i.e.
6c3b9cebb551140fbb25d58bae08b539b3802133ylavic# entities/man1/man1m/man3/man3tiff/man4/man5
6c3b9cebb551140fbb25d58bae08b539b3802133ylavic# - Add Package name to PACKAGES Variable
6c3b9cebb551140fbb25d58bae08b539b3802133ylavic# e.g. PACKAGES = \
4f29b65ab4b547ad5dbe506e2d0ff5d12ead9247ylavic# SUNWgnome-panel \
4f29b65ab4b547ad5dbe506e2d0ff5d12ead9247ylavic# SUNWyour-package
0a0df13b7f1f4f1a74fe295253d89ca3911b301aylavic#
0a0df13b7f1f4f1a74fe295253d89ca3911b301aylavic# - Add two package specific variables
0a0df13b7f1f4f1a74fe295253d89ca3911b301aylavic# PACKAGE_PAGES - Full path of all manpages for this package
0a0df13b7f1f4f1a74fe295253d89ca3911b301aylavic# e.g. SUNWgnome-panel_PAGES = man1/gnome-panel.1 etc...
69301145375a889e7e37caf7cc7321ac0f91801erpluem# PACKAGE.PAGES - Assigned to $(PACKAGE_PAGES).
69301145375a889e7e37caf7cc7321ac0f91801erpluem# e.g. SUNWgnome-panel.PAGES: $(SUNWgnome-panel_PAGES)
69301145375a889e7e37caf7cc7321ac0f91801erpluem#
506bfe33206b2fece40ef25f695af39dd4130facjkaluza#
506bfe33206b2fece40ef25f695af39dd4130facjkaluza# To Add new man pages to existing packages
506bfe33206b2fece40ef25f695af39dd4130facjkaluza# -----------------------------------------
506bfe33206b2fece40ef25f695af39dd4130facjkaluza# Put very simply, all that is required from engineers is to make some changes
d58a848a016d401b965111e50ef829e1641f7834minfrin# and commit in SVN.
d58a848a016d401b965111e50ef829e1641f7834minfrin#
d58a848a016d401b965111e50ef829e1641f7834minfrin# - Ensure the man page exists in SVN under the relevant man page section sub
2e6f4d654c96c98b761fb012fd25c5d5b1558c44sf# dir
2e6f4d654c96c98b761fb012fd25c5d5b1558c44sf# - Add man page to the SUNW<package>_PAGES Makefile variable
2e6f4d654c96c98b761fb012fd25c5d5b1558c44sf# e.g. For a new gnome-panel man page it would be added to
17e6c95f3b22d18acdf8380fb26a8d0e10c80767ylavic# SUNWgnome-panel_PAGES
17e6c95f3b22d18acdf8380fb26a8d0e10c80767ylavic# - Remake tarballs
17e6c95f3b22d18acdf8380fb26a8d0e10c80767ylavic# $ make
17e6c95f3b22d18acdf8380fb26a8d0e10c80767ylavic# This will re-generate all man page tarballs.
17e6c95f3b22d18acdf8380fb26a8d0e10c80767ylavic# - Copy newly generated tarball from sun-manpage-tarballs to package build
e8bd80a4bb88199d2f9a24a50345688e52d9c116ylavic# sources e.g. /jds/packages/SOURCES, and ensure package builds and manpages
e8bd80a4bb88199d2f9a24a50345688e52d9c116ylavic# install correctly.
e8bd80a4bb88199d2f9a24a50345688e52d9c116ylavic# - New man page tarball will be generated by RE for each nightly, and for each
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic# milestone build.
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic# - Commit change back to subverison, e.g. new/amended man pagees,
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic# Solaris/manpages/Makefile, Solaris/S*.spec files if affected.
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic#
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic#
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic# MANPAGE_VERSION is maintained by RE and only gets bumped when spec-files gets
330e16bea8fe9cace4de90c349750c03dfb1fe64ylavic# branched. PLEASE do not change this.
d7205b1a86c51c27b71a2c458dc453fd53a261c1covener#
d7205b1a86c51c27b71a2c458dc453fd53a261c1covenerSHELL=/bin/ksh
d7205b1a86c51c27b71a2c458dc453fd53a261c1covenerMANPAGE_VERSION=0.1
d7205b1a86c51c27b71a2c458dc453fd53a261c1covenerMANPAGE_DIR=sun-manpages
d7205b1a86c51c27b71a2c458dc453fd53a261c1covenerTARBALL_DIR=sun-manpage-tarballs
44ff304057225e944e220e981d434a046d14cf06covenerSGML2ROFF=/usr/lib/sgml/sgml2roff
44ff304057225e944e220e981d434a046d14cf06covenerGZIP=/usr/bin/gzip
44ff304057225e944e220e981d434a046d14cf06covenerTAR=/usr/bin/tar
44ff304057225e944e220e981d434a046d14cf06covenerAWK=/usr/bin/awk
5d1ba75b8794925e67591c209085a49279791de9covenerMAKE=/usr/sfw/bin/gmake
5d1ba75b8794925e67591c209085a49279791de9covenerGREP=/usr/bin/grep
5d1ba75b8794925e67591c209085a49279791de9covener
032982212dbcc7c3cce95bf89c503bb56e185ac7kbrandPACKAGES = \
032982212dbcc7c3cce95bf89c503bb56e185ac7kbrand SUNWIPython \
032982212dbcc7c3cce95bf89c503bb56e185ac7kbrand SUNWTiff \
032982212dbcc7c3cce95bf89c503bb56e185ac7kbrand SUNWbabl \
caad2986f81ab263f7af41467dd622dc9add17f3ylavic SUNWcheese \
caad2986f81ab263f7af41467dd622dc9add17f3ylavic SUNWclutter \
caad2986f81ab263f7af41467dd622dc9add17f3ylavic SUNWclutter-gst \
caad2986f81ab263f7af41467dd622dc9add17f3ylavic SUNWclutter-gtk \
45a10d38e6051fd7bdf9d742aaae633d97ff02abjailletc SUNWclutter-cairo \
f7317ff316c2b141feea31bddb74d5d3fa1584edjorton SUNWdia \
f7317ff316c2b141feea31bddb74d5d3fa1584edjorton SUNWdbus \
2165214331e4afafca4048f66f303d0253d7b001covener SUNWdbus-bindings \
a34684a59b60a4173c25035d0c627ef17e6dc215rpluem SUNWdrivel \
a34684a59b60a4173c25035d0c627ef17e6dc215rpluem SUNWespeak \
1e2d421a36999d292042a5539971070d54aa6c63ylavic SUNWevolution-libs \
1e2d421a36999d292042a5539971070d54aa6c63ylavic SUNWevolution-exchange \
1e2d421a36999d292042a5539971070d54aa6c63ylavic SUNWevolution \
fa7ed98b9dc94c5845cf845aea0a44ecacd290c9humbedooh SUNWevolution-webcal \
fa7ed98b9dc94c5845cf845aea0a44ecacd290c9humbedooh SUNWevolution-data-server \
fa7ed98b9dc94c5845cf845aea0a44ecacd290c9humbedooh SUNWfirefox \
0b67eb8568cd58bb77082703951679b42cf098actrawick SUNWfsexam \
0b67eb8568cd58bb77082703951679b42cf098actrawick SUNWgamin \
0b67eb8568cd58bb77082703951679b42cf098actrawick SUNWgegl \
0b67eb8568cd58bb77082703951679b42cf098actrawick SUNWglibmm \
5ef3c61605a3a021ff71f488983cb0065f8e1a79covener SUNWgnome-a11y-dasher \
fb1985a97912b25ec6564c73e610a31e5fc6e25fcovener SUNWgnome-a11y-gok \
09c87c777bed1655621bb20e1c46cb6b1a63279dcovener SUNWgnome-a11y-libs \
6502b7b32f980cc2093bb3ebce37e5e4dc68fba4ylavic SUNWgnome-a11y-mousetweaks \
6502b7b32f980cc2093bb3ebce37e5e4dc68fba4ylavic SUNWgnome-a11y-poke \
3060ce7f798fbda7999cd4ddf89b525d2b294185covener SUNWgnome-a11y-reader \
c1a63b8fad09c419c1a64f75993feb8a343a6801ylavic SUNWgnome-a11y-speech \
c1a63b8fad09c419c1a64f75993feb8a343a6801ylavic SUNWgnome-archive-mgr \
c1a63b8fad09c419c1a64f75993feb8a343a6801ylavic SUNWgnome-audio \
e6b4bd1113567627ab6bb6c6a7105e1e01a7d889jailletc SUNWgnome-base-libs \
e6b4bd1113567627ab6bb6c6a7105e1e01a7d889jailletc SUNWgnome-base-libs-java \
e466c40e1801982602ee0200c9e8b61cc148742djailletc SUNWgnome-calculator \
e466c40e1801982602ee0200c9e8b61cc148742djailletc SUNWgnome-camera \
457468b82e59d01eba00dd9d0817309c8f5e414ejim SUNWgnome-cd-burner \
457468b82e59d01eba00dd9d0817309c8f5e414ejim SUNWgnome-cd \
457468b82e59d01eba00dd9d0817309c8f5e414ejim SUNWgnome-character-map \
04983e3bd1754764eec7d6bb772fe3b0bf391771jorton SUNWgnome-common-devel \
04983e3bd1754764eec7d6bb772fe3b0bf391771jorton SUNWgnome-component \
15890c9306ba98f6fc243e15a3c4778ddc7d773erpluem SUNWgnome-config-editor \
15660979a30d251681463de2e0584853890082accovener SUNWgnome-config \
15660979a30d251681463de2e0584853890082accovener SUNWgnome-crash-report \
49dacedb6c387b786b7911082ff35121a45f414bcovener SUNWgnome-desktop-prefs \
49dacedb6c387b786b7911082ff35121a45f414bcovener SUNWgnome-devhelp \
cfd9415521847b2f9394fad04fb701cfb955f503rjung SUNWgnome-dialog \
cfd9415521847b2f9394fad04fb701cfb955f503rjung SUNWgnome-display-mgr \
cfd9415521847b2f9394fad04fb701cfb955f503rjung SUNWgnome-file-mgr \
28c31fb73c1264bd1d0ff932573677030b024c7dwrowe SUNWgnome-games \
28c31fb73c1264bd1d0ff932573677030b024c7dwrowe SUNWgnome-gtksourceview \
28c31fb73c1264bd1d0ff932573677030b024c7dwrowe SUNWgnome-gvfs \
28c31fb73c1264bd1d0ff932573677030b024c7dwrowe SUNWgnome-help-viewer \
28c31fb73c1264bd1d0ff932573677030b024c7dwrowe SUNWgnome-hex-editor \
8491e0600f69b0405e156ea8a419653c065c645bcovener SUNWgnome-im-client \
63b9f1f5880391261705f696d7d65507bbe9ace3covener SUNWgnome-img-viewer \
63b9f1f5880391261705f696d7d65507bbe9ace3covener SUNWgnome-libs \
63b9f1f5880391261705f696d7d65507bbe9ace3covener SUNWgnome-media-apps \
49dacedb6c387b786b7911082ff35121a45f414bcovener SUNWgnome-media-player \
49dacedb6c387b786b7911082ff35121a45f414bcovener SUNWgnome-media \
49dacedb6c387b786b7911082ff35121a45f414bcovener SUNWgnome-meeting \
49dacedb6c387b786b7911082ff35121a45f414bcovener SUNWgnome-menu-editor \
3c990331fc6702119e4f5b8ba9eae3021aea5265jim SUNWgnome-nettool \
3c990331fc6702119e4f5b8ba9eae3021aea5265jim SUNWgnome-panel \
3c990331fc6702119e4f5b8ba9eae3021aea5265jim SUNWgnome-pdf-viewer \
3c990331fc6702119e4f5b8ba9eae3021aea5265jim SUNWgnome-pilot \
fc42512879dd0504532f52fe5d0d0383dda96a1eniq SUNWgnome-power-manager \
fc42512879dd0504532f52fe5d0d0383dda96a1eniq SUNWgnome-print \
fc42512879dd0504532f52fe5d0d0383dda96a1eniq SUNWgnome-remote-desktop \
0451df5dc50fa5d8b3e07d92ee6a92e36a1181a5niq SUNWgnome-removable-media \
0451df5dc50fa5d8b3e07d92ee6a92e36a1181a5niq SUNWgnome-session \
0451df5dc50fa5d8b3e07d92ee6a92e36a1181a5niq SUNWgnome-spell \
da0442c0440caef34706e2c2f3af05cb65921cc0jailletc SUNWgnome-system-tools \
983528026996668ea295be95aedb9c7a346af470ylavic SUNWgnome-system-monitor \
da0442c0440caef34706e2c2f3af05cb65921cc0jailletc SUNWgnome-terminal \
da0442c0440caef34706e2c2f3af05cb65921cc0jailletc SUNWgnome-text-editor \
06b8f183140c8e02e0974e938a05078b511d1603covener SUNWgnome-ui-designer \
06b8f183140c8e02e0974e938a05078b511d1603covener SUNWgnome-utils \
06b8f183140c8e02e0974e938a05078b511d1603covener SUNWgnome-vfs \
15890c9306ba98f6fc243e15a3c4778ddc7d773erpluem SUNWgnome-wm \
259878293a997ff49f5ddfc53d3739cbdc25444ecovener SUNWgnutls \
259878293a997ff49f5ddfc53d3739cbdc25444ecovener SUNWgtkmm \
259878293a997ff49f5ddfc53d3739cbdc25444ecovener SUNWgtkspell \
259878293a997ff49f5ddfc53d3739cbdc25444ecovener SUNWgtk-vnc \
15890c9306ba98f6fc243e15a3c4778ddc7d773erpluem SUNWjpg \
b54b024c06a19926832d77d40ba35ad8c41e4d3dminfrin SUNWlibcanberra \
b54b024c06a19926832d77d40ba35ad8c41e4d3dminfrin SUNWlibcroco \
b54b024c06a19926832d77d40ba35ad8c41e4d3dminfrin SUNWlibgcrypt \
65967d05f839dbf27cf91d91fa79585eeae19660minfrin SUNWlibgmime \
65967d05f839dbf27cf91d91fa79585eeae19660minfrin SUNWlibgpg-error \
65967d05f839dbf27cf91d91fa79585eeae19660minfrin SUNWlibgsf \
65967d05f839dbf27cf91d91fa79585eeae19660minfrin SUNWlibgtop \
8152945ae46857b170cb227e79bb799f4fc7710dminfrin SUNWlibical \
8152945ae46857b170cb227e79bb799f4fc7710dminfrin SUNWliboil \
8152945ae46857b170cb227e79bb799f4fc7710dminfrin SUNWlibpopt \
8152945ae46857b170cb227e79bb799f4fc7710dminfrin SUNWlibproxy \
75f5c2db254c0167a0e396254460de09b775d203trawick SUNWlibrsvg \
75f5c2db254c0167a0e396254460de09b775d203trawick SUNWlibsoup \
75f5c2db254c0167a0e396254460de09b775d203trawick SUNWlibtasn1 \
4f0358189bfa57b8e75bd6b94db264302a8f336amrumph SUNWnwam-manager \
4f0358189bfa57b8e75bd6b94db264302a8f336amrumph SUNWogg-vorbis \
4f0358189bfa57b8e75bd6b94db264302a8f336amrumph SUNWpangomm \
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick SUNWpilot-link \
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick SUNWpng \
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick SUNWprint-monitor \
5716f9c6daa92dde5f2f9d11ed63f7c9549c223atrawick SUNWrealplayer \
54d750a84a175d8e338880514d440773eb986b50covener SUNWseahorse \
54d750a84a175d8e338880514d440773eb986b50covener SUNWsigcpp \
54d750a84a175d8e338880514d440773eb986b50covener SUNWthunderbird \
54d750a84a175d8e338880514d440773eb986b50covener SUNWvinagre \
54d750a84a175d8e338880514d440773eb986b50covener SUNWvirt-manager \
54d750a84a175d8e338880514d440773eb986b50covener SUNWw3m \
54d750a84a175d8e338880514d440773eb986b50covener SUNWxdg-user-dirs \
54d750a84a175d8e338880514d440773eb986b50covener SUNWxdg-user-dirs-gtk \
7a3aa12f0eda24793ee26d6a179bd53132e9dae8covener SUNWlibpigment \
54d750a84a175d8e338880514d440773eb986b50covener SUNWflac \
54d750a84a175d8e338880514d440773eb986b50covener SUNWspeex \
83b50288fa7d306324bba68832011ea08f5c7832covener SUNWlibtheora
4e30ef014533a7e93c92d88306291f5e49c9692ftrawick
83b50288fa7d306324bba68832011ea08f5c7832covenerall: TARBALLS
5f066f496cd9f20a2a701255bc67d44e7cb46daetrawick
5f066f496cd9f20a2a701255bc67d44e7cb46daetrawickSUNWTiff_PAGES = \
5f066f496cd9f20a2a701255bc67d44e7cb46daetrawick man1/fax2ps.1 \
2e15620d724fb8e3a5be183b917359a2fd6e9468covener man1/fax2tiff.1 \
2e15620d724fb8e3a5be183b917359a2fd6e9468covener man1/gif2tiff.1 \
2e15620d724fb8e3a5be183b917359a2fd6e9468covener man1/pal2rgb.1 \
2e15620d724fb8e3a5be183b917359a2fd6e9468covener man1/ppm2tiff.1 \
1b988c41ee505962781d110a3e4c2c90f1ea0aa4covener man1/ras2tiff.1 \
1b988c41ee505962781d110a3e4c2c90f1ea0aa4covener man1/rgb2ycbcr.1 \
1b988c41ee505962781d110a3e4c2c90f1ea0aa4covener man1/thumbnail.1 \
1b988c41ee505962781d110a3e4c2c90f1ea0aa4covener man1/tiff2bw.1 \
b8efdc95bec9cf089aa1be0bfd07d46aa1137a7acovener man1/tiff2ps.1 \
b8efdc95bec9cf089aa1be0bfd07d46aa1137a7acovener man1/tiffcmp.1 \
b8efdc95bec9cf089aa1be0bfd07d46aa1137a7acovener man1/tiffcp.1 \
f06e7c4b1bce6b6491e5de0b7998d3f5696b293dchrisd man1/tiffdither.1 \
f06e7c4b1bce6b6491e5de0b7998d3f5696b293dchrisd man1/tiffdump.1 \
f06e7c4b1bce6b6491e5de0b7998d3f5696b293dchrisd man1/tiffinfo.1 \
179565be4043d7e5f9161aa75271fa0a001866d9covener man1/tiffmedian.1 \
179565be4043d7e5f9161aa75271fa0a001866d9covener man1/tiffsplit.1 \
179565be4043d7e5f9161aa75271fa0a001866d9covener man3/libtiff.3 \
111436a32ba1254291e4883292fb116d15fe8f64covener man3tiff/TIFFCheckTile.3tiff \
fce4949fb0b309a5744afcd503c6ed2d35621ee2covener man3tiff/TIFFClientOpen.3tiff \
fce4949fb0b309a5744afcd503c6ed2d35621ee2covener man3tiff/TIFFClose.3tiff \
fce4949fb0b309a5744afcd503c6ed2d35621ee2covener man3tiff/TIFFComputeStrip.3tiff \
fce4949fb0b309a5744afcd503c6ed2d35621ee2covener man3tiff/TIFFComputeTile.3tiff \
7b7430e701e9a31ce809da7c220bb8dfcf68c86etrawick man3tiff/TIFFCurrentDirectory.3tiff \
7b7430e701e9a31ce809da7c220bb8dfcf68c86etrawick man3tiff/TIFFCurrentRow.3tiff \
7b7430e701e9a31ce809da7c220bb8dfcf68c86etrawick man3tiff/TIFFCurrentStrip.3tiff \
ccc20788c1e5fc973f36df634399c89acb70deaejerenkrantz man3tiff/TIFFCurrentTile.3tiff \
ccc20788c1e5fc973f36df634399c89acb70deaejerenkrantz man3tiff/TIFFDefaultStripSize.3tiff \
ccc20788c1e5fc973f36df634399c89acb70deaejerenkrantz man3tiff/TIFFDefaultTileSize.3tiff \
273e512f20f262e5e2aa8e0e83371d1929fb76adjkaluza man3tiff/TIFFError.3tiff \
273e512f20f262e5e2aa8e0e83371d1929fb76adjkaluza man3tiff/TIFFFdOpen.3tiff \
273e512f20f262e5e2aa8e0e83371d1929fb76adjkaluza man3tiff/TIFFFileName.3tiff \
efe780dcf13b2b95effabf897d694d8f23feac74trawick man3tiff/TIFFFileno.3tiff \
fe83f60b41477b14a37edcfcd1f7f5c5a1ebfe44minfrin man3tiff/TIFFFindCODEC.3tiff \
fe83f60b41477b14a37edcfcd1f7f5c5a1ebfe44minfrin man3tiff/TIFFFlush.3tiff \
fe83f60b41477b14a37edcfcd1f7f5c5a1ebfe44minfrin man3tiff/TIFFFlushData.3tiff \
993d1261a278d7322bccef219101220b7b4fb8c5jkaluza man3tiff/TIFFGetBitRevTable.3tiff \
993d1261a278d7322bccef219101220b7b4fb8c5jkaluza man3tiff/TIFFGetField.3tiff \
993d1261a278d7322bccef219101220b7b4fb8c5jkaluza man3tiff/TIFFGetFieldDefaulted.3tiff \
ba050a6f942b9fa0e81ed73437588005c569655ccovener man3tiff/TIFFGetMode.3tiff \
ba050a6f942b9fa0e81ed73437588005c569655ccovener man3tiff/TIFFGetVersion.3tiff \
ba050a6f942b9fa0e81ed73437588005c569655ccovener man3tiff/TIFFIsByteSwapped.3tiff \
ba050a6f942b9fa0e81ed73437588005c569655ccovener man3tiff/TIFFIsMSB2LSB.3tiff \
135ddda3a989215d2bedbcf1529bfb269c3eda23niq man3tiff/TIFFIsTiled.3tiff \
135ddda3a989215d2bedbcf1529bfb269c3eda23niq man3tiff/TIFFIsUpSampled.3tiff \
135ddda3a989215d2bedbcf1529bfb269c3eda23niq man3tiff/TIFFLastDirectory.3tiff \
001a44c352f89c9ec332ffd3e0a6927dcd19432chumbedooh man3tiff/TIFFNumberOfStrips.3tiff \
001a44c352f89c9ec332ffd3e0a6927dcd19432chumbedooh man3tiff/TIFFNumberOfTiles.3tiff \
001a44c352f89c9ec332ffd3e0a6927dcd19432chumbedooh man3tiff/TIFFOpen.3tiff \
efe780dcf13b2b95effabf897d694d8f23feac74trawick man3tiff/TIFFPrintDirectory.3tiff \
793214f67dede32edfd9ee96c664ead04d175cbbjfclere man3tiff/TIFFRGBAImage.3tiff \
cc5a4a08dc9783fcbc52ce86f11e01c281a43810minfrin man3tiff/TIFFRGBAImageBegin.3tiff \
9b0076ddd1103e5fa9c1f9bafde4b06ce244fbaecovener man3tiff/TIFFRGBAImageEnd.3tiff \
9b0076ddd1103e5fa9c1f9bafde4b06ce244fbaecovener man3tiff/TIFFRGBAImageGet.3tiff \
9b0076ddd1103e5fa9c1f9bafde4b06ce244fbaecovener man3tiff/TIFFRGBAImageOK.3tiff \
249d09d51808cb7981af99762c3b3736ca126cd5jkaluza man3tiff/TIFFRGBAImageOriented.3tiff \
249d09d51808cb7981af99762c3b3736ca126cd5jkaluza man3tiff/TIFFRasterScanlineSize.3tiff \
249d09d51808cb7981af99762c3b3736ca126cd5jkaluza man3tiff/TIFFReadBufferSetup.3tiff \
249d09d51808cb7981af99762c3b3736ca126cd5jkaluza man3tiff/TIFFReadDirectory.3tiff \
56589be3d7a3e9343370df240010c6928cc78b39jkaluza man3tiff/TIFFReadEncodedStrip.3tiff \
56589be3d7a3e9343370df240010c6928cc78b39jkaluza man3tiff/TIFFReadEncodedTile.3tiff \
56589be3d7a3e9343370df240010c6928cc78b39jkaluza man3tiff/TIFFReadRGBAImage.3tiff \
77ca16c5676da23155311e13cee61e7eaba9fa3ejailletc man3tiff/TIFFReadRGBAStrip.3tiff \
77ca16c5676da23155311e13cee61e7eaba9fa3ejailletc man3tiff/TIFFReadRGBATile.3tiff \
77ca16c5676da23155311e13cee61e7eaba9fa3ejailletc man3tiff/TIFFReadRawStrip.3tiff \
77ca16c5676da23155311e13cee61e7eaba9fa3ejailletc man3tiff/TIFFReadRawTile.3tiff \
f87299dab99bc04b51a6b8cad51b6795db862c0atrawick man3tiff/TIFFReadScanline.3tiff \
f87299dab99bc04b51a6b8cad51b6795db862c0atrawick man3tiff/TIFFReadTile.3tiff \
f87299dab99bc04b51a6b8cad51b6795db862c0atrawick man3tiff/TIFFRegisterCODEC.3tiff \
4d12805e6c18253040223ea637acd6b3b3c18f60jorton man3tiff/TIFFReverseBits.3tiff \
4d12805e6c18253040223ea637acd6b3b3c18f60jorton man3tiff/TIFFScanlineSize.3tiff \
4d12805e6c18253040223ea637acd6b3b3c18f60jorton man3tiff/TIFFSetDirectory.3tiff \
85eacfc96a04547ef25aabbc06440039715084c2jorton man3tiff/TIFFSetErrorHandler.3tiff \
85eacfc96a04547ef25aabbc06440039715084c2jorton man3tiff/TIFFSetField.3tiff \
e5d909f2b06bd880fb3675cd49363df981caa631trawick man3tiff/TIFFSetSubDirectory.3tiff \
a4df2cd1e1391575a327c2a90ba4315f805a0a78covener man3tiff/TIFFSetWarningHandler.3tiff \
a4df2cd1e1391575a327c2a90ba4315f805a0a78covener man3tiff/TIFFStripSize.3tiff \
a4df2cd1e1391575a327c2a90ba4315f805a0a78covener man3tiff/TIFFSwabArrayOfLong.3tiff \
cb666b29f81df1d11d65002250153353568021fccovener man3tiff/TIFFSwabArrayOfShort.3tiff \
cb666b29f81df1d11d65002250153353568021fccovener man3tiff/TIFFSwabLong.3tiff \
cb666b29f81df1d11d65002250153353568021fccovener man3tiff/TIFFSwabShort.3tiff \
6a80c3c6f4b8ea7ba5e89402b8b779b09ce020e0covener man3tiff/TIFFTileRowSize.3tiff \
1c2cab00d988fc48cbe59032cf76cc0bab20d6f7covener man3tiff/TIFFTileSize.3tiff \
6a80c3c6f4b8ea7ba5e89402b8b779b09ce020e0covener man3tiff/TIFFUnRegisterCODEC.3tiff \
75a230a728338d84dcfe81edd375352f34de22d0covener man3tiff/TIFFVGetField.3tiff \
75a230a728338d84dcfe81edd375352f34de22d0covener man3tiff/TIFFVGetFieldDefaulted.3tiff \
75a230a728338d84dcfe81edd375352f34de22d0covener man3tiff/TIFFVSetField.3tiff \
1f50dc34ae069adeed20b2986e5ffdefa5c410e0covener man3tiff/TIFFVStripSize.3tiff \
1f50dc34ae069adeed20b2986e5ffdefa5c410e0covener man3tiff/TIFFVTileSize.3tiff \
1f50dc34ae069adeed20b2986e5ffdefa5c410e0covener man3tiff/TIFFWarning.3tiff \
63a5ea80bddcc84a462e40f402b4f330e0e05411covener man3tiff/TIFFWriteBufferSetup.3tiff \
63a5ea80bddcc84a462e40f402b4f330e0e05411covener man3tiff/TIFFWriteDirectory.3tiff \
63a5ea80bddcc84a462e40f402b4f330e0e05411covener man3tiff/TIFFWriteEncodedStrip.3tiff \
63a5ea80bddcc84a462e40f402b4f330e0e05411covener man3tiff/TIFFWriteEncodedTile.3tiff \
65a4e663b82f8bce28ac22ab2edfd7502de36998sf man3tiff/TIFFWriteRawStrip.3tiff \
65a4e663b82f8bce28ac22ab2edfd7502de36998sf man3tiff/TIFFWriteRawTile.3tiff \
65a4e663b82f8bce28ac22ab2edfd7502de36998sf man3tiff/TIFFWriteScanline.3tiff \
65a4e663b82f8bce28ac22ab2edfd7502de36998sf man3tiff/TIFFWriteTile.3tiff \
c7de1955eb0eaeabf7042902476397692672d549sf man3tiff/TIFFbuffer.3tiff \
74e7f6c55fd67b10cb400b3f6d1dc718a303d944minfrin man3tiff/TIFFcodec.3tiff \
74e7f6c55fd67b10cb400b3f6d1dc718a303d944minfrin man3tiff/TIFFmemory.3tiff \
74e7f6c55fd67b10cb400b3f6d1dc718a303d944minfrin man3tiff/TIFFquery.3tiff \
74e7f6c55fd67b10cb400b3f6d1dc718a303d944minfrin man3tiff/TIFFsize.3tiff \
a511a29faf2ff7ead3b67680154a624effb31aafminfrin man3tiff/TIFFstrip.3tiff \
a511a29faf2ff7ead3b67680154a624effb31aafminfrin man3tiff/TIFFswab.3tiff \
a511a29faf2ff7ead3b67680154a624effb31aafminfrin man3tiff/TIFFtile.3tiff \
a511a29faf2ff7ead3b67680154a624effb31aafminfrin man3tiff/_TIFFfree.3tiff \
a511a29faf2ff7ead3b67680154a624effb31aafminfrin man3tiff/_TIFFmalloc.3tiff \
63921358ef93fcb41bc71d9894221ba3d7fbb87bminfrin man3tiff/_TIFFmemcmp.3tiff \
63921358ef93fcb41bc71d9894221ba3d7fbb87bminfrin man3tiff/_TIFFmemcpy.3tiff \
63921358ef93fcb41bc71d9894221ba3d7fbb87bminfrin man3tiff/_TIFFmemset.3tiff \
deec48c67d4786bc77112ffbf3a4e70b931097edminfrin man3tiff/_TIFFrealloc.3tiff
6d601599d3d65df0410eae6e573e75b2dbfb1fb4minfrinSUNWTiff.PAGES: $(SUNWTiff_PAGES)
6d601599d3d65df0410eae6e573e75b2dbfb1fb4minfrin
6d601599d3d65df0410eae6e573e75b2dbfb1fb4minfrinSUNWcheese_PAGES = \
6d601599d3d65df0410eae6e573e75b2dbfb1fb4minfrin man1/cheese.1
684e0cfc200f66287a93bbd1708d1dd8a92a7eefcovenerSUNWcheese.PAGES: $(SUNWcheese_PAGES)
684e0cfc200f66287a93bbd1708d1dd8a92a7eefcovener
5c43d2fb853f84497b5ece2d414ef9484aa87e5fsfSUNWdbus_PAGES = \
05a5a9c3e16f21566e1b61f4bd68025ce1b741ccjoes man1/dbus-cleanup-sockets.1 \
05a5a9c3e16f21566e1b61f4bd68025ce1b741ccjoes man1/dbus-daemon.1 \
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niq man1/dbus-launch.1 \
26c5829347f6a355c00f1ba0301d575056b69536niq man1/dbus-monitor.1 \
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niq man1/dbus-send.1 \
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niq man1/dbus-uuidgen.1 \
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niq man3/libdbus-1.3
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niqSUNWdbus.PAGES: $(SUNWdbus_PAGES)
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niq
ef82e8fa164e0a1f8b813f7deb6b7ead96018c94niqSUNWdbus-bindings_PAGES = \
413ee814748f37be168ff12407fa6dba0ceeabe6trawick man1/dbus-binding-tool.1 \
c12917da693bae4028a1d5a5e8224bceed8c739dsf man3/libdbus-glib-1.3
c12917da693bae4028a1d5a5e8224bceed8c739dsfSUNWdbus-bindings.PAGES: $(SUNWdbus-bindings_PAGES)
eafcc0ebf263d0ba69855b6e10958c4c1a2361bdsf
eafcc0ebf263d0ba69855b6e10958c4c1a2361bdsfSUNWevolution-libs_PAGES = \
eafcc0ebf263d0ba69855b6e10958c4c1a2361bdsf man1/gtkhtml-editor-test.1 \
eafcc0ebf263d0ba69855b6e10958c4c1a2361bdsf man3/libgtkhtml-editor.3 \
eafcc0ebf263d0ba69855b6e10958c4c1a2361bdsf man3/libgtkhtml-3.14.3
d7ffd2da16d58b1a0de212e4d56f7aebb72bef26sfSUNWevolution-libs.PAGES: $(SUNWevolution-libs_PAGES)
d7ffd2da16d58b1a0de212e4d56f7aebb72bef26sf
d7ffd2da16d58b1a0de212e4d56f7aebb72bef26sfSUNWevolution-exchange_PAGES = \
4576c1a9ef54cd1e5555ee07d016a7f559f80338sf man1/exchange-connector-setup.1
4576c1a9ef54cd1e5555ee07d016a7f559f80338sfSUNWevolution-exchange.PAGES: $(SUNWevolution-exchange_PAGES)
4576c1a9ef54cd1e5555ee07d016a7f559f80338sf
9811aed12bbc71783d2e544ccb5fecd193843eadsfSUNWevolution_PAGES = \
9811aed12bbc71783d2e544ccb5fecd193843eadsf man1/evolution.1 \
9811aed12bbc71783d2e544ccb5fecd193843eadsf man3/libebook-1.2.3 \
88fac54d9d64f85bbdab5d7010816f4377f95bd7rjung man3/libecal-1.2.3
88fac54d9d64f85bbdab5d7010816f4377f95bd7rjungSUNWevolution.PAGES: $(SUNWevolution_PAGES)
bd3f5647b96d378d9c75c954e3f13582af32c643sf
bd3f5647b96d378d9c75c954e3f13582af32c643sfSUNWevolution-data-server_PAGES = \
bd3f5647b96d378d9c75c954e3f13582af32c643sf man3/libedata-book-1.2.3 \
bd3f5647b96d378d9c75c954e3f13582af32c643sf man3/libedata-cal-1.2.3 \
bd3f5647b96d378d9c75c954e3f13582af32c643sf man3/libedataserver-1.2.3 \
2a7beea91d46beb41f043a84eaad060047ee04aafabien man3/libedataserverui-1.2.3 \
2a7beea91d46beb41f043a84eaad060047ee04aafabien man3/libcamel-1.2.3 \
2a7beea91d46beb41f043a84eaad060047ee04aafabien man3/libgdata-google-1.2.3 \
2a7beea91d46beb41f043a84eaad060047ee04aafabien man3/libgdata-1.2.3
584a85dd4047e38d3ed3a29b6662fcc9d100ae4csfSUNWevolution-data-server.PAGES: $(SUNWevolution-data-server_PAGES)
584a85dd4047e38d3ed3a29b6662fcc9d100ae4csf
584a85dd4047e38d3ed3a29b6662fcc9d100ae4csfSUNWevolution-webcal_PAGES = \
f21e9e3d0bfb7a507ecc5bc963f2159d693503d1sf man1/evolution-webcal.1
f21e9e3d0bfb7a507ecc5bc963f2159d693503d1sfSUNWevolution-webcal.PAGES: $(SUNWevolution-webcal_PAGES)
f21e9e3d0bfb7a507ecc5bc963f2159d693503d1sf
f6b9c755a0b793e8a3a3aebd327ca20a86478117sfSUNWfirefox_PAGES = \
f6b9c755a0b793e8a3a3aebd327ca20a86478117sf man1/firefox.1
f6b9c755a0b793e8a3a3aebd327ca20a86478117sfSUNWfirefox.PAGES: $(SUNWfirefox_PAGES)
132ee6ac1c26d6e8953836316ba50734eefab47bsf
132ee6ac1c26d6e8953836316ba50734eefab47bsfSUNWgnome-a11y-dasher_PAGES = \
132ee6ac1c26d6e8953836316ba50734eefab47bsf man1/dasher.1
85eacfc96a04547ef25aabbc06440039715084c2jortonSUNWgnome-a11y-dasher.PAGES: $(SUNWgnome-a11y-dasher_PAGES)
85eacfc96a04547ef25aabbc06440039715084c2jorton
85eacfc96a04547ef25aabbc06440039715084c2jortonSUNWgnome-a11y-gok_PAGES = \
536d2e7cd1fdec1255b8c3bdf41fdc714c506a54trawick man1/create-branching-keyboard.1 \
536d2e7cd1fdec1255b8c3bdf41fdc714c506a54trawick man1/gok.1
536d2e7cd1fdec1255b8c3bdf41fdc714c506a54trawickSUNWgnome-a11y-gok.PAGES: $(SUNWgnome-a11y-gok_PAGES)
536d2e7cd1fdec1255b8c3bdf41fdc714c506a54trawick
79c5787b92ac5f0e1cc82393816c77a006399316trawickSUNWgnome-a11y-libs_PAGES = \
79c5787b92ac5f0e1cc82393816c77a006399316trawick man1/magnifier.1 \
79c5787b92ac5f0e1cc82393816c77a006399316trawick man1/at-spi-registryd.1 \
79c5787b92ac5f0e1cc82393816c77a006399316trawick man3/at-spi.3 \
c967bf3bc89e8aa60dbd30d9da388e448ddc1cc4trawick man3/libspi.3 \
79c5787b92ac5f0e1cc82393816c77a006399316trawick man3/libloginhelper.3 \
79c5787b92ac5f0e1cc82393816c77a006399316trawick man3/libgnome-mag.3 \
79c5787b92ac5f0e1cc82393816c77a006399316trawick man3/libcspi.3
79c5787b92ac5f0e1cc82393816c77a006399316trawickSUNWgnome-a11y-libs.PAGES: $(SUNWgnome-a11y-libs_PAGES)
79c5787b92ac5f0e1cc82393816c77a006399316trawick
7b395e4e878c28a4784919cfd2e704ddd14a3390jortonSUNWgnome-a11y-mousetweaks_PAGES = \
7b395e4e878c28a4784919cfd2e704ddd14a3390jorton man1/mousetweaks.1 \
7b395e4e878c28a4784919cfd2e704ddd14a3390jorton man1/dwell-click-applet.1 \
7b395e4e878c28a4784919cfd2e704ddd14a3390jorton man1/pointer-capture-applet.1
536e48c08d674acac5d44929318f2ad928edc361jortonSUNWgnome-a11y-mousetweaks.PAGES: $(SUNWgnome-a11y-mousetweaks_PAGES)
536e48c08d674acac5d44929318f2ad928edc361jorton
e81785da447b469da66f218b3f0244aab507958djortonSUNWIPython_PAGES = \
e81785da447b469da66f218b3f0244aab507958djorton man1/ipython.1 \
3e4e54d4e3fc0123c63d57aa84ac7ad7a8c73ff8jorton man1/pycolor.1
3e4e54d4e3fc0123c63d57aa84ac7ad7a8c73ff8jortonSUNWIPython.PAGES: $(SUNWIPython_PAGES)
3e4e54d4e3fc0123c63d57aa84ac7ad7a8c73ff8jorton
53e9b27aba029b18be814df40bcf6f0428771d1efuankgSUNWgnome-a11y-reader_PAGES = \
53e9b27aba029b18be814df40bcf6f0428771d1efuankg man1/orca.1
53e9b27aba029b18be814df40bcf6f0428771d1efuankgSUNWgnome-a11y-reader.PAGES: $(SUNWgnome-a11y-reader_PAGES)
53e9b27aba029b18be814df40bcf6f0428771d1efuankg
53e9b27aba029b18be814df40bcf6f0428771d1efuankgSUNWgnome-a11y-speech_PAGES = \
6bb524f1895f30265a1431afc460977d391cb36bsf man1/test-speech.1 \
6bb524f1895f30265a1431afc460977d391cb36bsf man1/espeak-synthesis-driver.1 \
ca61ccd0c306c2c72df153688ba1b49f3eceed80sf man1/freetts-synthesis-driver.1 \
6bb524f1895f30265a1431afc460977d391cb36bsf man3/libfreettsdriver.so.3 \
e6dd71992459d05a676b98b7963423dc5dc1e24aminfrin man3/libgnomespeech.3
e6dd71992459d05a676b98b7963423dc5dc1e24aminfrinSUNWgnome-a11y-speech.PAGES: $(SUNWgnome-a11y-speech_PAGES)
e6dd71992459d05a676b98b7963423dc5dc1e24aminfrin
e6dd71992459d05a676b98b7963423dc5dc1e24aminfrinSUNWgnome-a11y-poke_PAGES = \
23f1535d6a60817d2846bac0aea230ea475d7dccminfrin man1/accerciser.1
23f1535d6a60817d2846bac0aea230ea475d7dccminfrinSUNWgnome-a11y-poke.PAGES: $(SUNWgnome-a11y-poke_PAGES)
23f1535d6a60817d2846bac0aea230ea475d7dccminfrin
23f1535d6a60817d2846bac0aea230ea475d7dccminfrinSUNWgnome-archive-mgr_PAGES = \
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjung man1/file-roller.1
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjungSUNWgnome-archive-mgr.PAGES: $(SUNWgnome-archive-mgr_PAGES)
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjung
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjungSUNWgnome-audio_PAGES = \
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjung man1/audiofile-config.1 \
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjung man1/esd-config.1 \
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjung man1/esdcat.1 \
ec7520b24cd80d34d82bbcaca153cbb23cc04bc0rjung man1/esdctl.1 \
6249dfa569d3b4f1f539665b979a80c6e335d93etrawick man1/esdmon.1 \
6249dfa569d3b4f1f539665b979a80c6e335d93etrawick man1/esdplay.1 \
0827cb14e550f6f65018431c22c2c913631c8f25kbrand man1/esdrec.1 \
6249dfa569d3b4f1f539665b979a80c6e335d93etrawick man1/esdsample.1 \
ae600ca541efc686b34f8b1f21bd3d0741d37674covener man3/libaudiofile.3 \
6249dfa569d3b4f1f539665b979a80c6e335d93etrawick man3/libesd.3
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingSUNWgnome-audio.PAGES: $(SUNWgnome-audio_PAGES)
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajim
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingSUNWgnome-base-libs_PAGES = \
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajim man1/glib-genmarshal.1 \
cfa64348224b66dd1c9979b809406c4d15b1c137fielding man1/glib-gettextize.1 \
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajim man1/glib-mkenums.1 \
cfa64348224b66dd1c9979b809406c4d15b1c137fielding man1/gobject-query.1 \
74499a117b3b2cd9666715a14f90c0e5d1a4ee8ajim man1/gdk-pixbuf-csource.1 \
cfa64348224b66dd1c9979b809406c4d15b1c137fielding man1/gdk-pixbuf-query-loaders.1 \
man1/gtk-query-immodules-2.0.1 \
man1/gtk-update-icon-cache.1 \
man1/gtk-builder-convert.1 \
man1/pango-querymodules.1 \
man1/libart2-config.1 \
man3/libatk-1.0.3 \
man3/libcairo.3 \
man3/libgailutil.3 \
man3/libgio-2.0.3 \
man3/libglib-2.0.3 \
man3/libgmodule-2.0.3 \
man3/libgobject-2.0.3 \
man3/libgthread-2.0.3 \
man3/libgdk-x11-2.0.3 \
man3/libgdk_pixbuf-2.0.3 \
man3/libgdk_pixbuf_xlib-2.0.3 \
man3/libgtk-x11-2.0.3 \
man3/libart_lgpl_2.3 \
man3/libglade-2.0.3 \
man3/libgnomecanvas-2.3 \
man3/libpango-1.0.3 \
man3/libpangocairo-1.0.3 \
man3/libpangoft2-1.0.3 \
man3/libpangoxft-1.0.3 \
man3/libpangox-1.0.3 \
man5/gnome-interfaces.5 \
entities/gnomecommon.ent
SUNWgnome-base-libs.PAGES: $(SUNWgnome-base-libs_PAGES)
SUNWgnome-base-libs-java_PAGES = \
man3/java-gnome.3
SUNWgnome-base-libs-java.PAGES: $(SUNWgnome-base-libs-java_PAGES)
SUNWgnome-calculator_PAGES = \
man1/gcalctool.1 \
man1/gnome-calculator.1
SUNWgnome-calculator.PAGES: $(SUNWgnome-calculator_PAGES)
SUNWgnome-cd-burner_PAGES = \
man1/nautilus-cd-burner.1
SUNWgnome-cd-burner.PAGES: $(SUNWgnome-cd-burner_PAGES)
SUNWgnome-cd_PAGES = \
man1/gnome-cd.1 \
man1/sound-juicer.1
SUNWgnome-cd.PAGES: $(SUNWgnome-cd_PAGES)
SUNWgnome-character-map_PAGES = \
man1/charmap.1 \
man1/gucharmap.1 \
man1/gnome-character-map.1
SUNWgnome-character-map.PAGES: $(SUNWgnome-character-map_PAGES)
SUNWgnome-common-devel_PAGES = \
man1/intltool-extract.1 \
man1/intltool-merge.1 \
man1/intltool-prepare.1 \
man1/intltool-update.1 \
man1/intltoolize.1 \
man1/pkg-config.1
SUNWgnome-common-devel.PAGES: $(SUNWgnome-common-devel_PAGES)
SUNWgnome-component_PAGES = \
man1/orbit-idl-2.1 \
man1/activation-client.1 \
man1/orbit2-config.1 \
man1/bonobo-slay.1 \
man3/libORBit-2.3 \
man3/libbonobo-activation.3 \
man3/libIDL-2.3 \
man3/libbonobo-2.3 \
man3/libORBitCosNaming-2.3
SUNWgnome-component.PAGES: $(SUNWgnome-component_PAGES)
SUNWgnome-config-editor_PAGES = \
man1/gconf-editor.1
SUNWgnome-config-editor.PAGES: $(SUNWgnome-config-editor_PAGES)
SUNWgnome-config_PAGES = \
man1/gconftool-2.1 \
man3/libgconf-2.3
SUNWgnome-config.PAGES: $(SUNWgnome-config_PAGES)
SUNWgnome-crash-report_PAGES = \
man1/bug-buddy.1
SUNWgnome-crash-report.PAGES: $(SUNWgnome-crash-report_PAGES)
SUNWgnome-desktop-prefs_PAGES = \
man1/update-desktop-database.1 \
man1/gnome-accessibility-keyboard-properties.1 \
man1/gnome-appearance-properties.1 \
man1/gnome-at-properties.1 \
man1/gnome-control-center.1 \
man1/gnome-default-applications-properties.1 \
man1/gnome-display-properties.1 \
man1/gnome-keybinding-properties.1 \
man1/gnome-keyboard-properties.1 \
man1/gnome-mouse-properties.1 \
man1/gnome-network-preferences.1 \
man1/gnome-sound-properties.1 \
man1/gnome-window-properties.1 \
man1/gnome-font-viewer.1
SUNWgnome-desktop-prefs.PAGES: $(SUNWgnome-desktop-prefs_PAGES)
SUNWgnome-dialog_PAGES = \
man1/zenity.1 \
man1/gdialog.1
SUNWgnome-dialog.PAGES: $(SUNWgnome-dialog_PAGES)
SUNWgnome-display-mgr_PAGES = \
man1/gdmXnest.1 \
man1/gdmXnestchooser.1 \
man1/gdmflexiserver.1 \
man1/gdmphotosetup.1 \
man1/gdmthemetester.1 \
man1/gdmdynamic.1 \
man1m/gdm.1m \
man1m/gdmsetup.1m \
man1m/gdm-binary.1m \
man1m/gdm-restart.1m \
man1m/gdm-safe-restart.1m \
man1m/gdm-stop.1m
SUNWgnome-display-mgr.PAGES: $(SUNWgnome-display-mgr_PAGES)
SUNWgnome-file-mgr_PAGES = \
man1/nautilus.1 \
man1/nautilus-file-management-properties.1
SUNWgnome-file-mgr.PAGES: $(SUNWgnome-file-mgr_PAGES)
SUNWgnome-gtksourceview_PAGES = \
man3/libgtksourceview-1.0.3 \
man3/libgtksourceview-2.0.3
SUNWgnome-gtksourceview.PAGES: $(SUNWgnome-gtksourceview_PAGES)
SUNWgnome-gvfs_PAGES = \
man1/gvfs-cat.1 \
man1/gvfs-copy.1 \
man1/gvfs-info.1 \
man1/gvfs-less.1 \
man1/gvfs-ls.1 \
man1/gvfs-mkdir.1 \
man1/gvfs-monitor-dir.1 \
man1/gvfs-monitor-file.1 \
man1/gvfs-mount.1 \
man1/gvfs-move.1 \
man1/gvfs-rename.1 \
man1/gvfs-open.1 \
man1/gvfs-rm.1 \
man1/gvfs-save.1 \
man1/gvfs-trash.1 \
man1/gvfs-tree.1
SUNWgnome-gvfs.PAGES: $(SUNWgnome-gvfs_PAGES)
SUNWgnome-help-viewer_PAGES = \
man1/gnome-help.1 \
man1/yelp.1
SUNWgnome-help-viewer.PAGES: $(SUNWgnome-help-viewer_PAGES)
SUNWgnome-hex-editor_PAGES = \
man1/ghex2.1
SUNWgnome-hex-editor.PAGES: $(SUNWgnome-hex-editor_PAGES)
SUNWgnome-im-client_PAGES = \
man1/pidgin.1 \
man1/purple-remote.1 \
man1/purple-send.1 \
man1/purple-send-async.1 \
man1/purple-url-handler.1 \
man1/otr_mackey.1 \
man1/otr_modify.1 \
man1/otr_parse.1 \
man1/otr_readforge.1 \
man1/otr_remac.1 \
man1/otr_sesskeys.1 \
man3/libpurple.3 \
man3/libpurple-client.3 \
man3/libotr.3
SUNWgnome-im-client.PAGES: $(SUNWgnome-im-client_PAGES)
SUNWgnome-meeting_PAGES = \
man1/ekiga.1
SUNWgnome-meeting.PAGES: $(SUNWgnome-meeting_PAGES)
SUNWgnome-img-viewer_PAGES = \
man1/eog.1
SUNWgnome-img-viewer.PAGES: $(SUNWgnome-img-viewer_PAGES)
SUNWgnome-libs_PAGES = \
man1/scrollkeeper-config.1 \
man1/scrollkeeper-devel.1 \
man1/scrollkeeper-extract.1 \
man1/scrollkeeper-gen-seriesid.1 \
man1/scrollkeeper-get-cl.1 \
man1/scrollkeeper-get-content-list.1 \
man1/scrollkeeper-get-extended-content-list.1 \
man1/scrollkeeper-get-index-from-docpath.1 \
man1/scrollkeeper-get-toc-from-docpath.1 \
man1/scrollkeeper-get-toc-from-id.1 \
man1/scrollkeeper-install.1 \
man1/scrollkeeper-preinstall.1 \
man1/scrollkeeper-rebuilddb.1 \
man1/scrollkeeper-uninstall.1 \
man1/scrollkeeper-update.1 \
man1/scrollkeeper.1 \
man1/gnome-open.1 \
man1/gnome-keyring-daemon.1 \
man3/libbonoboui-2.3 \
man3/libgnome-2.3 \
man3/libgnomeui-2.3 \
man3/libgnome-keyring.3
SUNWgnome-libs.PAGES: $(SUNWgnome-libs_PAGES)
SUNWgnome-media-apps_PAGES = \
man1/gnome-sound-recorder.1 \
man1/gnome-audio-profiles-properties.1 \
man1/gnome-volume-control.1 \
man1/gstreamer-properties.1
SUNWgnome-media-apps.PAGES: $(SUNWgnome-media-apps_PAGES)
SUNWgnome-media-player_PAGES = \
man1/rhythmbox.1 \
man1/rhythmbox-client.1 \
man1/totem.1 \
man1/totem-audio-preview.1 \
man1/totem-video-indexer.1 \
man1/totem-video-thumbnailer.1
SUNWgnome-media-player.PAGES: $(SUNWgnome-media-player_PAGES)
SUNWgnome-media_PAGES = \
man1/gst-feedback.1 \
man1/gst-inspect.1 \
man1/gst-launch.1 \
man1/gst-typefind.1 \
man1/gst-xmlinspect.1 \
man1/gst-xmllaunch.1 \
man3/libgstreamer-0.10.3 \
man3/libgstbase-0.10.3 \
man5/gst-std-options.5
SUNWgnome-media.PAGES: $(SUNWgnome-media_PAGES)
SUNWgnome-menu-editor_PAGES = \
man1/alacarte.1
SUNWgnome-menu-editor.PAGES: $(SUNWgnome-menu-editor_PAGES)
SUNWgnome-panel_PAGES = \
man1/gnome-about.1 \
man1/gnome-desktop-item-edit.1 \
man1/gnome-panel.1 \
man1/notify-send.1 \
man1/gnome-cleanup.1 \
man3/libgnome-desktop-2.3 \
man3/libpanel-applet-2.3 \
man3/libnotify.3 \
man5/gnome-std-options.5
SUNWgnome-panel.PAGES: $(SUNWgnome-panel_PAGES)
SUNWgnome-pdf-viewer_PAGES = \
man1/evince.1 \
man1/gpdf.1
SUNWgnome-pdf-viewer.PAGES: $(SUNWgnome-pdf-viewer_PAGES)
SUNWgnome-pilot_PAGES = \
man1/gpilot-install-file.1 \
man1/gpilotd-control-applet.1 \
man1/gpilotd.1 \
man3/libgpilotd.3 \
man3/libgpilotdcm.3 \
man3/libgpilotdconduit.3
SUNWgnome-pilot.PAGES: $(SUNWgnome-pilot_PAGES)
SUNWpilot-link_PAGES = \
man3/libpisock.3 \
man3/libpisync.3
SUNWpilot-link.PAGES: $(SUNWpilot-link_PAGES)
SUNWgnome-print_PAGES = \
man1/gnome-printinfo.1 \
man3/libgnomeprint-2-2.3 \
man3/libgnomeprintui-2-2.3
SUNWgnome-print.PAGES: $(SUNWgnome-print_PAGES)
SUNWgnome-removable-media_PAGES = \
man1/gnome-volcheck.1
SUNWgnome-removable-media.PAGES: $(SUNWgnome-removable-media_PAGES)
SUNWgnome-remote-desktop_PAGES = \
man1/vino-server.1 \
man1/vino-passwd.1 \
man1/vino-preferences.1
SUNWgnome-remote-desktop.PAGES: $(SUNWgnome-remote-desktop_PAGES)
SUNWgnome-session_PAGES = \
man1/gnome-session.1 \
man1/gnome-session-properties.1 \
man1/gnome-session-save.1 \
man1/gnome-wm.1
SUNWgnome-session.PAGES: $(SUNWgnome-session_PAGES)
SUNWgnome-system-tools_PAGES = \
man1/network-admin.1 \
man1/services-admin.1 \
man1/shares-admin.1 \
man1/time-admin.1 \
man1/users-admin.1
SUNWgnome-system-tools.PAGES: $(SUNWgnome-system-tools_PAGES)
SUNWgnome-system-monitor_PAGES = \
man1/gnome-system-monitor.1
SUNWgnome-system-monitor.PAGES: $(SUNWgnome-system-monitor_PAGES)
SUNWgnome-terminal_PAGES = \
man1/gnome-terminal.1 \
man1/vte.1 \
man3/libvte.3
SUNWgnome-terminal.PAGES: $(SUNWgnome-terminal_PAGES)
SUNWgnome-text-editor_PAGES = \
man1/gedit.1 \
man1/gnome-text-editor.1
SUNWgnome-text-editor.PAGES: $(SUNWgnome-text-editor_PAGES)
SUNWgnome-ui-designer_PAGES = \
man1/glade-3.1
SUNWgnome-ui-designer.PAGES: $(SUNWgnome-ui-designer_PAGES)
SUNWgnome-utils_PAGES = \
man1/gnome-dictionary.1 \
man1/gnome-search-tool.1 \
man1/gnome-panel-screenshot.1 \
man1/gnome-screenshot.1
SUNWgnome-utils.PAGES: $(SUNWgnome-utils_PAGES)
SUNWgnome-vfs_PAGES = \
man1/gnomevfs-cat.1 \
man1/gnomevfs-copy.1 \
man1/gnomevfs-info.1 \
man1/gnomevfs-ls.1 \
man1/gnomevfs-mkdir.1 \
man1/update-mime-database.1 \
man3/libgnomevfs-2.3 \
man4/gnome-vfs-mime-magic.4 \
man4/gnome-vfs.applications.4 \
man4/gnome-vfs.keys.4 \
man4/gnome-vfs.mime.4
SUNWgnome-vfs.PAGES: $(SUNWgnome-vfs_PAGES)
SUNWgnome-wm_PAGES = \
man1/metacity.1 \
man1/metacity-message.1 \
man1/metacity-theme-viewer.1
SUNWgnome-wm.PAGES: $(SUNWgnome-wm_PAGES)
SUNWjpg_PAGES = \
man1/cjpeg.1 \
man1/djpeg.1 \
man1/jpegtran.1 \
man1/rdjpgcom.1 \
man1/wrjpgcom.1 \
man3/libjpeg.3
SUNWjpg.PAGES: $(SUNWjpg_PAGES)
SUNWlibical_PAGES = \
man3/libical.3
SUNWlibical.PAGES: $(SUNWlibical_PAGES)
SUNWlibpopt_PAGES = \
man3/libpopt.3
SUNWlibpopt.PAGES: $(SUNWlibpopt_PAGES)
SUNWlibrsvg_PAGES = \
man1/rsvg.1 \
man3/librsvg-2.3
SUNWlibrsvg.PAGES: $(SUNWlibrsvg_PAGES)
SUNWogg-vorbis_PAGES = \
man3/libogg.3 \
man3/libvorbis.3
SUNWogg-vorbis.PAGES: $(SUNWogg-vorbis_PAGES)
SUNWpng_PAGES = \
man3/libpng.3 \
man3/libpngpf.3 \
man4/png.4
SUNWpng.PAGES: $(SUNWpng_PAGES)
SUNWrealplayer_PAGES = \
man1/realplay.1
SUNWrealplayer.PAGES: $(SUNWrealplayer_PAGES)
SUNWthunderbird_PAGES = \
man1/thunderbird.1
SUNWthunderbird.PAGES: $(SUNWthunderbird_PAGES)
SUNWgnome-devhelp_PAGES = \
man1/devhelp.1 \
man3/libdevhelp-1.3
SUNWgnome-devhelp.PAGES: $(SUNWgnome-devhelp_PAGES)
SUNWgnome-power-manager_PAGES = \
man1/gnome-power-manager.1 \
man1/gnome-power-preferences.1 \
man1/gnome-power-statistics.1
SUNWgnome-power-manager.PAGES: $(SUNWgnome-power-manager_PAGES)
SUNWfsexam_PAGES = \
man1/fsexam.1 \
man4/fsexam.4
SUNWfsexam.PAGES: $(SUNWfsexam_PAGES)
SUNWprint-monitor_PAGES = \
man1/ospm-pm.1 \
man1/ospm-preferences.1
SUNWprint-monitor.PAGES: $(SUNWprint-monitor_PAGES)
SUNWvirt-manager_PAGES = \
man1/virt-manager.1
SUNWvirt-manager.PAGES: $(SUNWvirt-manager_PAGES)
SUNWgnome-games_PAGES = \
man3/libggz.3 \
man3/libggzcore.3 \
man3/libggzmod.3
SUNWgnome-games.PAGES: $(SUNWgnome-games_PAGES)
SUNWxdg-user-dirs_PAGES = \
man1/xdg-user-dir.1 \
man1/xdg-user-dirs-update.1
SUNWxdg-user-dirs.PAGES: $(SUNWxdg-user-dirs_PAGES)
SUNWxdg-user-dirs-gtk_PAGES = \
man1/xdg-user-dirs-gtk-update.1
SUNWxdg-user-dirs-gtk.PAGES: $(SUNWxdg-user-dirs-gtk_PAGES)
SUNWgamin_PAGES = \
man1/gam_server.1 \
man3/libgamin-1.3
SUNWgamin.PAGES: $(SUNWgamin_PAGES)
SUNWlibtasn1_PAGES = \
man3/libtasn1.3 \
man1/libtasn1-config.1
SUNWlibtasn1.PAGES: $(SUNWlibtasn1_PAGES)
SUNWlibgmime_PAGES = \
man3/libgmime.3
SUNWlibgmime.PAGES: $(SUNWlibgmime_PAGES)
SUNWliboil_PAGES = \
man1/oil-bugreport.1 \
man3/liboil-0.3.3
SUNWliboil.PAGES: $(SUNWliboil_PAGES)
SUNWgnome-spell_PAGES = \
man1/enchant.1 \
man1/enchant-lsmod.1 \
man3/libenchant.3
SUNWgnome-spell.PAGES: $(SUNWgnome-spell_PAGES)
SUNWlibgtop_PAGES = \
man3/libgtop-2.0.3
SUNWlibgtop.PAGES: $(SUNWlibgtop_PAGES)
SUNWglibmm_PAGES = \
man3/libgiomm-2.4.3 \
man3/libglibmm-2.4.3
SUNWglibmm.PAGES: $(SUNWglibmm_PAGES)
SUNWsigcpp_PAGES = \
man3/libsigc-2.0.3
SUNWsigcpp.PAGES: $(SUNWsigcpp_PAGES)
SUNWlibsoup_PAGES = \
man3/libsoup-2.4.3
SUNWlibsoup.PAGES: $(SUNWlibsoup_PAGES)
SUNWlibproxy_PAGES = \
man3/libproxy.3
SUNWlibproxy.PAGES: $(SUNWlibproxy_PAGES)
SUNWgnutls_PAGES = \
man1/libgnutls-config.1 \
man3/libgnutls.3 \
man3/libgnutlsxx.3
SUNWgnutls.PAGES: $(SUNWgnutls_PAGES)
SUNWlibcanberra_PAGES = \
man1/canberra-gtk-play.1 \
man3/libcanberra.3 \
man3/libcanberra-gtk.3
SUNWlibcanberra.PAGES: $(SUNWlibcanberra_PAGES)
SUNWlibcroco_PAGES = \
man1/croco-0.6-config.1 \
man3/libcroco-0.6.3
SUNWlibcroco.PAGES: $(SUNWlibcroco_PAGES)
SUNWlibgcrypt_PAGES = \
man1/libgcrypt-config.1 \
man1/dumpsexp.1 \
man3/libgcrypt.3
SUNWlibgcrypt.PAGES: $(SUNWlibgcrypt_PAGES)
SUNWlibgpg-error_PAGES = \
man1/gpg-error-config.1 \
man1/gpg-error.1 \
man3/libgpg-error.3
SUNWlibgpg-error.PAGES: $(SUNWlibgpg-error_PAGES)
SUNWgnome-camera_PAGES = \
man1/gphoto2-config.1 \
man1/gphoto2-port-config.1 \
man1/gexif.1
SUNWgnome-camera.PAGES: $(SUNWgnome-camera_PAGES)
SUNWgtkspell_PAGES = \
man3/libgtkspell.3
SUNWgtkspell.PAGES: $(SUNWgtkspell_PAGES)
SUNWgtkmm_PAGES = \
man3/libgtkmm-2.4.3 \
man3/libatkmm-1.6.3 \
man3/libgdkmm-2.4.3
SUNWgtkmm.PAGES: $(SUNWgtkmm_PAGES)
SUNWpangomm_PAGES = \
man3/libpangomm-1.4.3
SUNWpangomm.PAGES: $(SUNWpangomm_PAGES)
SUNWespeak_PAGES = \
man1/espeak.1 \
man3/libespeak.3
SUNWespeak.PAGES: $(SUNWespeak_PAGES)
SUNWgnome-nettool_PAGES = \
man1/gnome-nettool.1
SUNWgnome-nettool.PAGES: $(SUNWgnome-nettool_PAGES)
SUNWnwam-manager_PAGES = \
man1m/nwam-manager.1m
SUNWnwam-manager.PAGES: $(SUNWnwam-manager_PAGES)
SUNWw3m_PAGES = \
man1/w3m.1 \
man1/w3mman.1
SUNWw3m.PAGES: $(SUNWw3m_PAGES)
SUNWlibgsf_PAGES = \
man1/gsf.1 \
man1/gsf-office-thumbnailer.1 \
man1/gsf-vba-dump.1 \
man3/libgsf-1.3 \
man3/libgsf-gnome-1.3
SUNWlibgsf.PAGES: $(SUNWlibgsf_PAGES)
SUNWseahorse_PAGES = \
man1/seahorse.1 \
man1/seahorse-daemon.1 \
man3/libcryptui.3
SUNWseahorse.PAGES: $(SUNWseahorse_PAGES)
SUNWdia_PAGES = \
man1/dia.1
SUNWdia.PAGES: $(SUNWdia_PAGES)
SUNWgtk-vnc_PAGES = \
man3/libgtk-vnc-1.0.3
SUNWgtk-vnc.PAGES: $(SUNWgtk-vnc_PAGES)
SUNWdrivel_PAGES = \
man1/drivel.1
SUNWdrivel.PAGES: $(SUNWdrivel_PAGES)
SUNWvinagre_PAGES = \
man1/vinagre.1
SUNWvinagre.PAGES: $(SUNWvinagre_PAGES)
SUNWclutter_PAGES = \
man3/libclutter-glx-0.8.3
SUNWclutter.PAGES: $(SUNWclutter_PAGES)
SUNWclutter-gst_PAGES = \
man3/libclutter-gst-0.8.3
SUNWclutter-gst.PAGES: $(SUNWclutter-gst_PAGES)
SUNWclutter-cairo_PAGES = \
man3/libclutter-cairo-0.8.3
SUNWclutter-cairo.PAGES: $(SUNWclutter-cairo_PAGES)
SUNWclutter-gtk_PAGES = \
man3/libclutter-gtk-0.8.3
SUNWclutter-gtk.PAGES: $(SUNWclutter-gtk_PAGES)
SUNWbabl_PAGES = \
man3/libbabl-0.0.3
SUNWbabl.PAGES: $(SUNWbabl_PAGES)
SUNWgegl_PAGES = \
man1/gegl.1 \
man3/libgegl-0.0.3
SUNWgegl.PAGES: $(SUNWgegl_PAGES)
SUNWlibpigment_PAGES= \
man3/libpigment-0.3.3 \
man3/libpigment-gtk-0.3.3 \
man3/libpigment-imaging-0.3.3
SUNWlibpigment.PAGES: $(SUNWlibpigment_PAGES)
SUNWlibtheora_PAGES= \
man3/libtheora.3 \
man3/libtheoraenc.3 \
man3/libtheoradec.3
SUNWlibtheora.PAGES: $(SUNWlibtheora_PAGES)
SUNWflac_PAGES= \
man3/libFLAC.3
SUNWflac.PAGES: $(SUNWlibflac_PAGES)
SUNWspeex_PAGES= \
man3/libspeex.3 \
man3/libspeexdsp.3
SUNWspeex.PAGES: $(SUNWspeex_PAGES)
.SUFFIXES: -manpages-$(MANPAGE_VERSION).tar.gz .PAGES
.SUFFIXES: .check-used .PAGES
TARBALLS = $(TARBALL_DIR)/$(addsuffix -$(MANPAGE_VERSION).tar.bz2, $(PACKAGES))
TARBALLS:
@test -d $(TARBALL_DIR) || mkdir -p "$(TARBALL_DIR)"
@rm -rf $(TARBALL_DIR)/*.tar.gz
@test -x $(SGML2ROFF) || echo "sgml2roff utility not found"
@test -x $(GZIP) || echo "gzip utility not found"
@for package in $(PACKAGES); do \
$(MAKE) MAKE=\"$(MAKE)\" $$package-manpages-$(MANPAGE_VERSION).tar.gz; \
done
%-manpages-$(MANPAGE_VERSION).tar.gz: %.PAGES
@test -d $(TARBALL_DIR) || mkdir -p "$(TARBALL_DIR)"
@if test -f $(TARBALL_DIR)/$@; then \
rm -f $(TARBALL_DIR)/$@; \
fi
@rm -rf $(MANPAGE_DIR)/*
@test -d $(MANPAGE_DIR) || mkdir -p "$(MANPAGE_DIR)"
@echo "Converting manpages for $@"
@for manpage in $($(subst .PAGES,_PAGES,$<)); do \
base_manpage=`basename $$manpage`; \
echo " $$base_manpage"; \
suffix=`expr "$$base_manpage" : '.*\.\([^./]*\)$'`; \
if [ $$suffix = "ent" ]; then \
cp $$manpage $(MANPAGE_DIR); \
else \
$(SGML2ROFF) $$manpage > $(MANPAGE_DIR)/$$base_manpage; \
$(GREP) "<!--ARC" $$manpage | $(AWK) '{ \
idx1 = index($$0, "ARC "); \
idx2 = index($$0, "-->"); \
if (idx1 > 0 && idx2 > 0) { \
print "...\\\" " substr($$0, idx1+6, idx2-(idx1+6)); \
} \
}' >> $(MANPAGE_DIR)/$$base_manpage; \
fi;\
echo $$base_manpage >> $(MANPAGE_DIR)/$$suffix; \
done
@cp Makefile.template $(MANPAGE_DIR)/Makefile
@if test -f $(MANPAGE_DIR)/ent; then \
mv $(MANPAGE_DIR)/ent $(MANPAGE_DIR)/entities; \
fi
@for mantype in entities 1 1m 3 3tiff 4 5; do \
if test -f $(MANPAGE_DIR)/$$mantype; then \
echo "MAN"$$mantype"PAGES = \\" >> $(MANPAGE_DIR)/Makefile; \
$(AWK) '{ \
if (length(saved_page) > 0) \
print " " saved_page " \\"; \
saved_page=$$0; \
} \
END { \
print " " saved_page; \
}' $(MANPAGE_DIR)/$$mantype >> $(MANPAGE_DIR)/Makefile; \
echo "" >> $(MANPAGE_DIR)/Makefile; \
fi; \
done
@echo "install:" >> $(MANPAGE_DIR)/Makefile
@for mantype in entities 1 1m 3 3tiff 4 5; do \
if test -f $(MANPAGE_DIR)/$$mantype; then \
echo " install -d \$$(DESTDIR)\$$(MAN"$$mantype"DIR)" >> $(MANPAGE_DIR)/Makefile; \
echo " for mp in \$$(MAN"$$mantype"PAGES); do \\" >> $(MANPAGE_DIR)/Makefile; \
echo " install --mode=0644 \$$\$$mp \$$(DESTDIR)\$$(MAN"$$mantype"DIR); \\" >> $(MANPAGE_DIR)/Makefile; \
echo " done" >> $(MANPAGE_DIR)/Makefile; \
rm -f $(MANPAGE_DIR)/$$mantype; \
fi; \
done
@tarball=`basename "$@" .gz`; echo "Making tarball $$tarball"; \
$(TAR) -cf $(TARBALL_DIR)/$$tarball $(MANPAGE_DIR); \
$(GZIP) $(TARBALL_DIR)/$$tarball
@rm -rf $(MANPAGE_DIR)
check-used:
@test -d check-used-manpages || mkdir -p "check-used-manpages"
@test -d check-all-manpages || mkdir -p "check-all-manpages"
@rm -f unused-manpages.txt
@cp entities/* man*/* check-all-manpages
@for package in $(PACKAGES); do \
$(MAKE) MAKE=\"$(MAKE)\" $$package.check-used; \
done
@all_manpages=`ls check-all-manpages/*`; \
for manpage in $$all_manpages; do \
base_manpage=`basename $$manpage`; \
if test -f check-used-manpages/$$base_manpage; then \
echo " "$$base_manpage >> /dev/null; \
else \
echo " "$$base_manpage >> unused-manpages.txt; \
fi; \
done
@if test -f unused-manpages.txt; then \
echo "Following Manpages are not being used in any SUNW package :"; \
cat unused-manpages.txt; \
rm -f unused-manpages.txt; \
else \
echo "All man pages are being used"; \
fi
@rm -rf check-all-manpages
@rm -rf check-used-manpages
%.check-used: %.PAGES
@for manpage in $($(subst .PAGES,_PAGES,$<)); do \
cp $$manpage check-used-manpages; \
done
check-version:
@echo $(MANPAGE_VERSION)
clean:
rm -rf $(MANPAGE_DIR)
rm $(TARBALL_DIR)/*.tar.gz