From d9c948c7660fd487f81da3e864cd1e7e7811649b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Sat, 8 Mar 2014 10:36:59 +0100 Subject: RPM packaging: update build script --- redhat/build/Makefile.r14 | 14 ++++++++++---- redhat/build/get_specfile.sh | 14 +++++++------- 2 files changed, 17 insertions(+), 11 deletions(-) (limited to 'redhat/build') diff --git a/redhat/build/Makefile.r14 b/redhat/build/Makefile.r14 index cb82e3898..ab3047a92 100644 --- a/redhat/build/Makefile.r14 +++ b/redhat/build/Makefile.r14 @@ -182,12 +182,18 @@ ifneq ($(wildcard /boot/vmlinuz*.el5*),) $(call buildpkg,3rdparty/sip) endif +sword: +# Build on Fedora >= 20 only +ifneq ($(wildcard /boot/vmlinuz*.fc20*),) + $(call buildpkg,3rdparty/sword) +endif + torsocks: $(call buildpkg,3rdparty/torsocks) wv2: -# Do NOT build on Mageia -ifeq ($(wildcard /etc/mageia-release),) +# Do NOT build on Mageia or openSUSE +ifeq ($(wildcard /etc/mageia-release /etc/SuSE-release),) $(call buildpkg,3rdparty/wv2) endif @@ -242,7 +248,7 @@ amarok: tdebase basket: tdebase $(call buildpkg,applications/basket) -bibletime: tdebase +bibletime: tdebase sword $(call buildpkg,applications/bibletime) compizconfig-backend-kconfig: tdebase @@ -518,7 +524,7 @@ tdeio-ftps: tdebase tdeio-locate: tdebase $(call buildpkg,applications/tdeio-locate) -tdeio-sword: tdebase +tdeio-sword: tdebase sword $(call buildpkg,applications/tdeio-sword) tdeio-umountwrapper: tdebase diff --git a/redhat/build/get_specfile.sh b/redhat/build/get_specfile.sh index d60748604..8f4b542e0 100755 --- a/redhat/build/get_specfile.sh +++ b/redhat/build/get_specfile.sh @@ -5,23 +5,23 @@ TDE_VERSION="${2:-14.0.0}" [ -z "${PKGNAME}" ] && echo "You must specify a package name !" && exit 1 -[ -d "${TDE_SPECDIR}" ] || TDE_SPECDIR=~/tde/tde-packaging/redhat +[ -d "${PACKAGING_DIR}" ] || PACKAGING_DIR=~/tde/tde-packaging/redhat # Special case for QT3 if [ "${PKGNAME}" = "qt3" ]; then case "$(rpmdist.sh --dist)" in - .oss*) TDE_SPECDIR=~/tde/tde-packaging/opensuse ;; - .mga*|.mdk*|.pclos*) TDE_SPECDIR=~/tde/tde-packaging/mageia ;; + .oss*) PACKAGING_DIR=~/tde/tde-packaging/opensuse ;; + .mga*|.mdk*|.pclos*) PACKAGING_DIR=~/tde/tde-packaging/mageia ;; esac fi -SPECFILE=$(find "${TDE_SPECDIR}" -name "${PKGNAME}-${TDE_VERSION}.spec") +SPECFILE=$(find "${PACKAGING_DIR}" -name "${PKGNAME}-${TDE_VERSION}.spec") if [ ! -r "${SPECFILE}" ]; then - SPECFILE=$(find "${TDE_SPECDIR}" -name "${PKGNAME}.spec") + SPECFILE=$(find "${PACKAGING_DIR}" -name "${PKGNAME}.spec") if [ ! -r "${SPECFILE}" ]; then - SPECFILE=$(find "${TDE_SPECDIR}" -name "trinity-${PKGNAME}-${TDE_VERSION}.spec") + SPECFILE=$(find "${PACKAGING_DIR}" -name "trinity-${PKGNAME}-${TDE_VERSION}.spec") if [ ! -r "${SPECFILE}" ]; then - SPECFILE=$(find "${TDE_SPECDIR}" -name "trinity-${PKGNAME}.spec") + SPECFILE=$(find "${PACKAGING_DIR}" -name "trinity-${PKGNAME}.spec") fi fi fi -- cgit v1.2.3