]> ncurses.scripts.mit.edu Git - ncurses.git/blob - misc/gen-pkgconfig.in
12bf11ce55f07715f0cbc3fc49e869b2c09d3133
[ncurses.git] / misc / gen-pkgconfig.in
1 #!@SHELL@
2 # $Id: gen-pkgconfig.in,v 1.3 2009/01/03 22:26:47 tom Exp $
3 ##############################################################################
4 # Copyright (c) 2009 Free Software Foundation, Inc.                          #
5 #                                                                            #
6 # Permission is hereby granted, free of charge, to any person obtaining a    #
7 # copy of this software and associated documentation files (the "Software"), #
8 # to deal in the Software without restriction, including without limitation  #
9 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
10 # with modifications, sublicense, and/or sell copies of the Software, and to #
11 # permit persons to whom the Software is furnished to do so, subject to the  #
12 # following conditions:                                                      #
13 #                                                                            #
14 # The above copyright notice and this permission notice shall be included in #
15 # all copies or substantial portions of the Software.                        #
16 #                                                                            #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
20 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
22 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
23 # DEALINGS IN THE SOFTWARE.                                                  #
24 #                                                                            #
25 # Except as contained in this notice, the name(s) of the above copyright     #
26 # holders shall not be used in advertising or otherwise to promote the sale, #
27 # use or other dealings in this Software without prior written               #
28 # authorization.                                                             #
29 ##############################################################################
30 #
31 # Author: Thomas E. Dickey, 2009
32 #
33 # The complete configure script for ncurses is the ncurses5-config (or similar
34 # name, depending on the flavor, e.g., ncursesw5-config, ncurses6-config, etc).
35 # That provides more information than pkg-config, and is the portable and
36 # recommended solution.
37 #
38 # For each library, generate a ".pc" file which depends on the base ncurses
39 # library, except that the tinfo library does not depend on ncurses.
40 LIB_NAME=@LIB_NAME@
41 TINFO_NAME=@TINFO_NAME@
42 DFT_DEP_SUFFIX=@DFT_DEP_SUFFIX@
43 CXX_LIB_SUFFIX=@CXX_LIB_SUFFIX@
44 LD_RPATH_OPT=@LD_RPATH_OPT@
45
46 prefix="@prefix@"
47 exec_prefix="@exec_prefix@"
48 includedir="@includedir@"
49 libdir="@libdir@"
50
51 show_prefix='@prefix@'
52 show_exec_prefix='@exec_prefix@'
53 show_includedir='@includedir@'
54 show_libdir='@libdir@'
55
56 MAIN_LIBRARY="${LIB_NAME}@DFT_ARG_SUFFIX@"
57 SUB_LIBRARY="${TINFO_NAME}@DFT_ARG_SUFFIX@"
58
59 for lib in ../lib/*
60 do
61         name=`basename $lib`
62         root=`basename $name "$DFT_DEP_SUFFIX"`
63         if test "$name" == "$root" ; then
64                 root=`basename $name "$CXX_LIB_SUFFIX"`
65                 if test "$name" == "$root" ; then
66                         continue
67                 fi
68         fi
69
70         name=`echo "$name" | sed -e 's/^lib//' -e 's/\..*$//'`
71
72         desc="ncurses @NCURSES_MAJOR@.@NCURSES_MINOR@"
73         if test $name = $MAIN_LIBRARY ; then
74                 reqs=
75                 desc="$desc library"
76         elif test $name = $SUB_LIBRARY ; then
77                 reqs=
78                 desc="$desc terminal interface library"
79         else
80                 reqs=$MAIN_LIBRARY
81                 desc="$desc add-on library"
82         fi
83
84         if test "$includedir" = "/usr/include" ; then
85                 cflags=
86         else
87                 cflags="-I\${includedir}"
88         fi
89
90         if test "$libdir" = "/usr/lib" ; then
91                 libs=
92         else
93                 libs="-L\${libdir}"
94         fi
95         libs="$libs -l$name"
96
97         # add dependencies that pkg-config cannot guess about
98         if test -z "$reqs" ; then
99                 if test -z "$LD_RPATH_OPT" ; then
100                         libs="$libs @LIBS@"
101                 fi
102         fi
103
104         echo "** creating ${name}.pc"
105         cat >${name}.pc <<EOF
106 prefix=$show_prefix
107 exec_prefix=$show_exec_prefix
108 libdir=$show_libdir
109 includedir=$show_includedir
110 major_version=@NCURSES_MAJOR@
111 version=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@
112
113 Name: $name
114 Description: $desc
115 Version: \${version}
116 Requires: $reqs
117 Libs: $libs
118 Cflags: $cflags
119 EOF
120         # pr -f ${name}.pc
121 done
122 # vile:shmode