libtool: changed ltmain.sh to not add references to $destdir.
[pkgfs.git] / mktmpl.sh
blob4c1ba4c4d73ebc1a658baf4bc5c406e7f8b028ec
1 #!/bin/sh
3 #-
4 # Copyright (c) 2008 Juan Romero Pardines.
5 # All rights reserved.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 # 1. Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 # Shell script to automate the creation of new templates for pkgfs.
29 # Only writes basic stuff into the template, if you need advanced stuff
30 # you'll have to do that manually.
32 # At least it will fetch the distfile and compute the checksum, plus
33 # other stuff for free... so it's not that bad, heh.
35 # Supports GNU configure, configure and perl module templates for now.
37 : ${ftp_cmd:=/usr/bin/ftp -a}
38 : ${awk_cmd:=/usr/bin/awk}
39 : ${cksum_cmd:=/usr/bin/cksum -a rmd160}
40 : ${sed_cmd:=/usr/bin/sed}
41 : ${db_cmd:=/usr/bin/db -q}
42 : ${config_file:=/usr/local/etc/pkgfs.conf}
43 : ${chmod_cmd:=/bin/chmod}
45 required_deps=
47 write_new_template()
49 local tmpldir="$PKGFS_DISTRIBUTIONDIR/templates"
50 local depsdir="$PKGFS_DISTRIBUTIONDIR/dependencies"
51 local distdir="$PKGFS_SRCDISTDIR"
52 local checksum=
53 local dfile=
54 local tmplname=
56 [ ! -d $distdir -o ! -d $tmpldir -o ! -d $depsdir ] && exit 1
58 save_pwd=$(pwd -P 2>/dev/null)
59 echo "=> Fetching distfile from $url"
60 cd $distdir && $ftp_cmd $url
61 [ "$?" -ne 0 ] && echo "Error fetching file, aborting." && exit 1
63 dfile=$(basename $url)
64 checksum=$($cksum_cmd $dfile|$awk_cmd '{print $4}')
65 [ -z "$checksum" ] && echo "Checksum empty, aborting." && exit 1
67 cd $save_pwd
69 pkg="$pkgname-$version"
70 pkg_sufx=${dfile##$pkg}
72 if [ "$build_style" = "g" ]; then
73 build_style=gnu_configure
74 elif [ "$build_style" = "p" ]; then
75 build_style=perl_module
76 tmplname="perl-"
77 else
78 build_style=configure
81 if [ -f "$tmpldir/$pkgname.tmpl" ]; then
82 echo "There's an existing template with the same name, do you"
83 echo -n "want to overwrite it? (y)es or (n)o: "
84 read overwrite
85 if [ "$overwrite" = "n" ]; then
86 echo "not overwriting... bye."
87 exit 1
88 elif [ -z "$overwrite" ]; then
89 echo "no answer?... will overwrite"
93 ( \
94 echo "# Template build file for '$tmplname$pkgname'."; \
95 echo "pkgname=$tmplname$pkgname"; \
96 echo "version=$version"; \
97 if [ -n "$perl_module" ]; then \
98 echo "distfiles=\"$pkg\""; \
99 fi; \
100 echo "extract_sufx=\"$pkg_sufx\""; \
101 echo "url=${url%%/$dfile}"; \
102 echo "build_style=$build_style"; \
103 if [ -n "$dep_gmake" ]; then \
104 echo "make_cmd=\"\$PKGFS_MASTERDIR/bin/gmake\""; \
105 fi; \
106 if [ -n "$pcfiles" ]; then \
107 echo "pkgconfig_override=\"$pcfiles\""; \
108 fi; \
109 echo "short_desc=\"$short_desc\""; \
110 echo "maintainer=\"$maintainer\""; \
111 echo "checksum=$checksum"; \
112 echo "long_desc=\"...\""; \
113 ) > $tmpldir/$tmplname$pkgname.tmpl
115 if [ ! -r "$tmpldir/$tmplname$pkgname.tmpl" ]; then
116 echo "Couldn't write template, aborting."
117 exit 1
120 $chmod_cmd 755 $tmpldir/$tmplname$pkgname.tmpl
122 if [ -n "$deps" ]; then
123 for i in $required_deps; do
124 deps="$i $deps"
125 done
126 [ -n "$pcfiles" ] && deps="pkg-config-0.23 $deps"
127 [ -n "$perl_module" ] && deps="perl-5.10.0 $deps"
129 $db_cmd -R -P 512 -w btree $depsdir/build-depends.db $pkgname \
130 "$deps" 2>&1 >/dev/null
131 [ "$?" -ne 0 ] && \
132 echo "Errong writing dependencies db file." && exit 1
135 echo
136 echo "=> Template created at: $tmpldir/$tmplname$pkgname.tmpl"
137 echo
138 echo "If you need more changes, do them manually. You can also look"
139 echo "at $tmpldir/example.tmpl to know what variables can be used and"
140 echo "to learn about their meanings. Don't forget to set \$long_desc!"
141 echo
142 echo "Happy hacking!"
145 read_parameters()
147 if [ ! -f "$config_file" ]; then
148 echo "-- Configuration file cannot be read --"
149 exit 1
152 . $config_file
154 echo -n "Enter name of this package: "
155 read pkgname
157 [ -z "$pkgname" ] && echo "-- Empty value --" && exit 1
159 echo -n "Enter version number of this package: "
160 read version
162 [ -z "$version" ] && echo "-- Empty value --" && exit 1
164 echo "What's the build style for this template?"
165 echo -n "(g)nu_configure, (c)onfigure, (p)erl_module: "
166 read build_style
167 echo
169 if [ -z "$build_style" ]; then
170 echo " -- Empty value --"
171 exit 1
172 elif [ "$build_style" = "g" ]; then
173 gnu_configure=yes
174 elif [ "$build_style" = "c" ]; then
175 configure=yes
176 elif [ "$build_style" = "p" ]; then
177 perl_module=yes
178 else
179 echo " -- Invalid answer --"
180 exit 1
183 echo -n "Requires GNU libtool this package? (y) or (n): "
184 read dep_libtool
185 [ "$dep_libtool" = "y" ] && \
186 required_deps="libtool-2.2.6a $required_deps"
188 echo -n "Requires GNU make this package? (y) or (n): "
189 read dep_gmake
190 echo
191 [ "$dep_gmake" = "y" ] && \
192 required_deps="gmake-3.81 $required_deps"
193 [ "$dep_gmake" = "n" ] && dep_gmake=
195 echo "Please enter exact dependencies required for this template."
196 echo "They must be separated by whitespaces, e.g: foo-1.0 blah-2.0."
197 echo
198 echo "If it's a perl module or uses libtool/gmake, the dependency"
199 echo "will be added automatically so don't add them here again!"
200 echo -n "> "
201 read deps
202 echo
203 [ -z "$deps" ] && echo "No dependencies, continuing..."
205 echo "Will this package install pkg-config files?"
206 echo "If true, enter the names of the files with the .pc extension"
207 echo "and separated with whitespaces between them, e.g: foo.pc blah.pc."
208 echo
209 echo "Alternatively press the enter key to ignore this question."
210 echo -n "> "
211 read pcfiles
212 echo
214 echo "Enter full URL to download the distfile: "
215 echo -n "> "
216 read url
217 echo
218 [ -z "$url" ] && echo " -- Empty value --" && exit 1
220 echo "Enter short description (max 72 characters):"
221 echo -n "> "
222 read short_desc
223 echo
225 echo "Enter maintainer for this package, e.g: Anon <ymous.org>:"
226 echo "Alternatively press enter to ignore this question."
227 echo -n "> "
228 read maintainer
229 echo
231 write_new_template
235 # If user specified a full path to pkgfs.conf, use it. Otherwise look
236 # at default location, and as last resort current dir.
238 if [ -n "$1" ]; then
239 config_file="$1"
242 if [ ! -f "$config_file" ]; then
243 config_file="$(pwd -P 2>/dev/null)/pkgfs.conf"
244 if [ ! -f "$config_file" ]; then
245 echo "$(basename $0): cannot find configuration file"
246 echo "Please speficify it, e.g: $(basename $0) /path/to/pkgfs.conf"
247 exit 1
251 read_parameters
252 exit $?