diff options
author | B. Watson <yalhcru@gmail.com> | 2020-11-19 00:33:27 -0500 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-11-22 01:14:26 +0700 |
commit | e2fc83676d773b7a23d8d3817b1d06b52c73a8cb (patch) | |
tree | 001961ba6b45f7052bf0ae09941be03b122914b7 /office/teapot/teapot.SlackBuild | |
parent | 4cd83fb34670f44ecf0f186e0fb2b28c57215bbb (diff) |
office/teapot: Fix fltk build, README.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'office/teapot/teapot.SlackBuild')
-rw-r--r-- | office/teapot/teapot.SlackBuild | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/office/teapot/teapot.SlackBuild b/office/teapot/teapot.SlackBuild index 85d8f4e7d600c..9d02a8577cf91 100644 --- a/office/teapot/teapot.SlackBuild +++ b/office/teapot/teapot.SlackBuild @@ -22,9 +22,21 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20201119 bkw: modified by SlackBuilds.org: +# - BUILD=2. +# - Fix fltk builds. +# - Shut up a compiler warning. +# - Restore original homepage/download, since the site is back up. +# - Fix README to comply with 72-column limit. +# - Fix doubleplus ungood refs undirectory /usr/share/doc in man page. +# - Since the man page says there's a manual, actually install the +# manual as part of the package. To avoid a dependency on lyx (and +# consequently qt5!), pull the prebuilt docs out of upstream's +# binary package. + PRGNAM=teapot VERSION=${VERSION:-2.3.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -62,6 +74,8 @@ cd $TMP rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION +# Extract *only* the docs from the binary package: +tar xvf $CWD/Teapot-$VERSION-Linux-i386.tar.gz --wildcards '*/share/doc/*' chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ @@ -69,6 +83,17 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# 20201119 bkw: README says fltk is an optional dep, but it wasn't +# being picked up by cmake. +patch -p1 < $CWD/fix_fltk_build.diff + +# 20201119 bkw: While we're in a patching state of mind, fix a +# compiler warning. +patch -p1 < $CWD/fix_mbslen_warning.diff + +# 20201119 bkw: No such thing as /usr/share/doc/teapot. +sed -i "s,/usr/share/doc/$PRGNAM,/usr/doc/$PRGNAM-$VERSION,g" $PRGNAM.1 + mkdir -p build cd build cmake \ @@ -90,9 +115,13 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r rm -rf $PKG/usr/share mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a COPYING INSTALL NEWS README $PKG/usr/doc/$PRGNAM-$VERSION +cp -a COPYING NEWS README $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +# 20201119 bkw: Install the PDF and HTML docs. +cd Teapot-$VERSION-Linux/share/doc/$PRGNAM +mv html *.pdf $PKG/usr/doc/$PRGNAM-$VERSION + mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |