diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2022-10-16 16:55:36 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2022-10-16 16:55:36 +0000 |
commit | b370d84534509b3c276713af1830254c6e6299f1 (patch) | |
tree | 75095e1d4d777dad8a04311f49f41aceeb4b8535 /lib/libXft/man/Makefile.am | |
parent | 4ca1f6a1942c0618a7c2fe527cbbb358409d57f8 (diff) |
Update to libXft 2.3.6 - bug fixes + new manual pages.
Diffstat (limited to 'lib/libXft/man/Makefile.am')
-rw-r--r-- | lib/libXft/man/Makefile.am | 94 |
1 files changed, 92 insertions, 2 deletions
diff --git a/lib/libXft/man/Makefile.am b/lib/libXft/man/Makefile.am index 24e78d819..c5c90d43f 100644 --- a/lib/libXft/man/Makefile.am +++ b/lib/libXft/man/Makefile.am @@ -1,11 +1,101 @@ -libman_PRE = Xft.man libmandir = $(LIB_MAN_DIR) + +libman_PRE = \ + Xft.man \ + $(Xft_sources) + +Xft_sources = \ + $(Xft_shadows:=.man) + +Xft_shadows = \ + XftCharExists \ + XftCharFontSpecRender \ + XftCharIndex \ + XftCharSpecRender \ + XftColorAllocName \ + XftColorAllocValue \ + XftColorFree \ + XftDefaultHasRender \ + XftDefaultSet \ + XftDefaultSubstitute \ + XftDrawChange \ + XftDrawCharFontSpec \ + XftDrawCharSpec \ + XftDrawColormap \ + XftDrawCreate \ + XftDrawCreateAlpha \ + XftDrawCreateBitmap \ + XftDrawDestroy \ + XftDrawDisplay \ + XftDrawDrawable \ + XftDrawGlyphFontSpec \ + XftDrawGlyphSpec \ + XftDrawGlyphs \ + XftDrawPicture \ + XftDrawRect \ + XftDrawSetClip \ + XftDrawSetClipRectangles \ + XftDrawSetSubwindowMode \ + XftDrawSrcPicture \ + XftDrawString16 \ + XftDrawString32 \ + XftDrawString8 \ + XftDrawStringUtf16 \ + XftDrawStringUtf8 \ + XftDrawVisual \ + XftFontCheckGlyph \ + XftFontClose \ + XftFontCopy \ + XftFontInfoCreate \ + XftFontInfoDestroy \ + XftFontInfoEqual \ + XftFontInfoHash \ + XftFontLoadGlyphs \ + XftFontMatch \ + XftFontOpen \ + XftFontOpenInfo \ + XftFontOpenName \ + XftFontOpenPattern \ + XftFontOpenXlfd \ + XftFontUnloadGlyphs \ + XftGetVersion \ + XftGlyphExtents \ + XftGlyphFontSpecRender \ + XftGlyphRender \ + XftGlyphSpecRender \ + XftInit \ + XftInitFtLibrary \ + XftListFonts \ + XftLockFace \ + XftNameParse \ + XftNameUnparse \ + XftTextExtents16 \ + XftTextExtents32 \ + XftTextExtents8 \ + XftTextExtentsUtf16 \ + XftTextExtentsUtf8 \ + XftTextRender16 \ + XftTextRender16BE \ + XftTextRender16LE \ + XftTextRender32 \ + XftTextRender32BE \ + XftTextRender32LE \ + XftTextRender8 \ + XftTextRenderUtf16 \ + XftTextRenderUtf8 \ + XftUnlockFace \ + XftXlfdParse + libman_DATA = $(libman_PRE:man=$(LIB_MAN_SUFFIX)) EXTRA_DIST = $(libman_PRE) -CLEANFILES = $(libman_DATA) +CLEANFILES = $(libman_DATA) $(Xft_sources) + SUFFIXES = .$(LIB_MAN_SUFFIX) .man +$(Xft_sources) : + $(AM_V_GEN)echo ".so man__libmansuffix__/Xft.__libmansuffix__" > $@ + # String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure .man.$(LIB_MAN_SUFFIX): $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ |