From dec9ed6dfab03059ef9716c95b24e5d995b59a2d Mon Sep 17 00:00:00 2001 From: Hunter Sezen Date: Tue, 19 Dec 2017 21:40:33 +0000 Subject: libraries/libetonyek: Updated for version 0.1.7. Signed-off-by: David Spencer --- libraries/libetonyek/README | 6 ++++-- libraries/libetonyek/libetonyek.SlackBuild | 27 +++++++++++---------------- libraries/libetonyek/libetonyek.info | 6 +++--- libraries/libetonyek/mdds-1.2.patch.gz | Bin 532 -> 0 bytes 4 files changed, 18 insertions(+), 21 deletions(-) delete mode 100644 libraries/libetonyek/mdds-1.2.patch.gz (limited to 'libraries/libetonyek') diff --git a/libraries/libetonyek/README b/libraries/libetonyek/README index b584bf4785..86b2218088 100644 --- a/libraries/libetonyek/README +++ b/libraries/libetonyek/README @@ -4,5 +4,7 @@ based on librevenge. It can import presentations of Keynote versions is planned as well. The library is a part of the Document Liberation Project. -To build the doxygen html documentation use DOC="yes". -To build the tests, install cppunit before running this script. +cppunit is an optional dependency to build and run the unit tests. + +To build the doxygen html documentation use: + DOC="yes". diff --git a/libraries/libetonyek/libetonyek.SlackBuild b/libraries/libetonyek/libetonyek.SlackBuild index d9fa680ea4..52949c8a35 100644 --- a/libraries/libetonyek/libetonyek.SlackBuild +++ b/libraries/libetonyek/libetonyek.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=libetonyek -VERSION=${VERSION:-0.1.6} +VERSION=${VERSION:-0.1.7} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -54,7 +54,7 @@ else LIBDIRSUFFIX="" fi -set -e +set -eu rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -69,23 +69,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 {} \; -DOC=${DOC:-no} -if [ ! "$DOC" = "yes" ]; then - doc="--without-docs" -else - doc="" -fi +case "${DOC:-0}" in + 0) doc='--without-docs' ;; + *) doc='--with-docs' ;; +esac -if ! pkg-config --exists cppunit; then - cppunit="--disable-tests" +if pkg-config --exists cppunit; then + cppunit='--enable-tests' else - cppunit="" + cppunit='--disable-tests' fi -# patch taken from Debian -zcat $CWD/mdds-1.2.patch.gz | patch -p1 -autoreconf -fi - CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -102,7 +96,8 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS COPYING ChangeLog FEATURES NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog FEATURES NEWS README TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/libraries/libetonyek/libetonyek.info b/libraries/libetonyek/libetonyek.info index 3d60ca5846..201b5a23de 100644 --- a/libraries/libetonyek/libetonyek.info +++ b/libraries/libetonyek/libetonyek.info @@ -1,8 +1,8 @@ PRGNAM="libetonyek" -VERSION="0.1.6" +VERSION="0.1.7" HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libetonyek" -DOWNLOAD="http://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.6.tar.xz" -MD5SUM="dfe25b0c7739283a5c61a930ea1f9bf8" +DOWNLOAD="http://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.7.tar.xz" +MD5SUM="3088732de0028b1340668b8a3caf3c25" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="glm liblangtag mdds" diff --git a/libraries/libetonyek/mdds-1.2.patch.gz b/libraries/libetonyek/mdds-1.2.patch.gz deleted file mode 100644 index 555e8b77f0..0000000000 Binary files a/libraries/libetonyek/mdds-1.2.patch.gz and /dev/null differ -- cgit v1.2.3