diff options
author | B. Watson <yalhcru@gmail.com> | 2014-12-09 08:12:21 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-12-12 07:49:02 +0700 |
commit | 4188decc8c56aab49da739ab8157fdab9a712927 (patch) | |
tree | de43a1009773c5da423126f5183ad8aa9d8172e0 /graphics/baires/baires.SlackBuild | |
parent | c81a6bbb7129b2e5fdf193a7e0a7880d10c1fa66 (diff) |
graphics/baires: New maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/baires/baires.SlackBuild')
-rw-r--r-- | graphics/baires/baires.SlackBuild | 44 |
1 files changed, 34 insertions, 10 deletions
diff --git a/graphics/baires/baires.SlackBuild b/graphics/baires/baires.SlackBuild index 71eea79775e5..554e35d49930 100644 --- a/graphics/baires/baires.SlackBuild +++ b/graphics/baires/baires.SlackBuild @@ -21,6 +21,15 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# Modified by B. Watson, 20141208: +# - took over as maintainer +# - use archive.org URLs in .info file +# - install shipped HTML docs, have the Help option use +# them instead of upstream's site (which no longer exists) +# - use 128px icon instead of 48px +# - make .desktop file validate +# - minor script cleanups + PRGNAM=baires VERSION=${VERSION:-1.2r1} BUILD=${BUILD:-1} @@ -54,7 +63,7 @@ else LIBDIRSUFFIX="" fi -DOCS="CHANGELOG LICENSE" +DOCS="CHANGELOG LICENSE documentation/*.html snapshots" set -e @@ -71,20 +80,35 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# use locally installed copies of HTML docs, since upstream's site has +# gone away. +sed -i \ + "s,http://www.beli.ws/apps/baires/help/,file:///usr/doc/$PRGNAM-$VERSION/," \ + mainwindow.cpp + +# the HTML docs have fully qualified URLs for images, use local copies +# for these, too. +ICON=/usr/share/pixmaps/$PRGNAM.png +SNAPS=/usr/doc/$PRGNAM-$VERSION/snapshots +sed -i \ + -e "s,http://www\.beli\.ws/images/baires-64\.png,file://$ICON," \ + -e "s,http://www\.beli\.ws/images/\(baires._..\.png\),file://$SNAPS/\1," \ + documentation/*.html + qmake QMAKE_CFLAGS="$SLKCFLAGS" \ QMAKE_CXXFLAGS="$SLKCFLAGS" \ $PRGNAM.pro make -install -d -m 755 $PKG/usr/bin -install -m 755 $TMP/$PRGNAM/$PRGNAM $PKG/usr/bin -install -d -m 755 $PKG/usr/share/pixmaps -install -m 644 $TMP/$PRGNAM/icons/baires-48.png $PKG/usr/share/pixmaps/baires.png -install -d -m 755 $PKG/usr/share/applications -install -m 644 $PRGNAM.desktop $PKG/usr/share/applications - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/bin $PKG/usr/share/pixmaps $PKG/usr/share/applications +install -s -m 755 $PRGNAM $PKG/usr/bin +cat icons/$PRGNAM-128.png > $PKG/$ICON + +# Get rid of deprecated & nonstandard keys from .desktop, for +# desktop-file-validate. +grep -v -e ^Encoding -e ^X-SuSE $PRGNAM.desktop \ + > $PKG/usr/share/applications/$PRGNAM.desktop mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION |