diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-09-08 19:18:46 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-09-08 19:18:46 +0200 |
commit | c56eddf6d066544f75355c5a999e1436f4aead78 (patch) | |
tree | 95f2202df7ddae113882b0cfab28701b4f15633e /redhat/buildall-sru.sh | |
parent | 712bf363997de9da621b9f2b39a3775493dc0ef3 (diff) | |
download | tde-packaging-c56eddf6d066544f75355c5a999e1436f4aead78.tar.gz tde-packaging-c56eddf6d066544f75355c5a999e1436f4aead78.zip |
RPM Packaging: updates for 3.5.13.2
Diffstat (limited to 'redhat/buildall-sru.sh')
-rwxr-xr-x | redhat/buildall-sru.sh | 37 |
1 files changed, 29 insertions, 8 deletions
diff --git a/redhat/buildall-sru.sh b/redhat/buildall-sru.sh index 5f768a64b..9ca791375 100755 --- a/redhat/buildall-sru.sh +++ b/redhat/buildall-sru.sh @@ -139,10 +139,10 @@ grpiui tdeutils if ! is_installed trinity-desktop; then grpiu extras/trinity-desktop eval ${PKGINST} trinity-desktop || exit 1 - # Disable trinity repository from here !!! - if [ -r "/etc/yum.repos.d/trinity-3.5.13.repo" ]; then - sed -i "/etc/yum.repos.d/trinity-3.5.13.repo" -e "s|enabled=.*|enabled=0|g" - fi +fi +# Disable trinity repository from here !!! +if [ -r "/etc/yum.repos.d/trinity-3.5.13.repo" ]; then + sudo sed -i "/etc/yum.repos.d/trinity-3.5.13.repo" -e "s|enabled=.*|enabled=0|g" fi # devel packages @@ -153,10 +153,10 @@ if ! is_installed trinity-desktop-devel; then eval ${PKGINST} trinity-desktop-devel || exit 1 fi -# Extra libraries +# 3rd party libraries ## IMLIB1: required for kuickshow -if ! is_installed imlib1-devel; then +if ! is_installed imlib1-devel && ! is_installed imlib-devel; then grpiu 3rdparty/imlib1 eval ${PKGINST} imlib1-devel || exit 1 fi @@ -169,17 +169,36 @@ if [ "${DIST:0:4}" != ".mga" ]; then eval ${PKGINST} wv2-devel || exit 1 fi fi + +## PYTHON-QT3: for Python-stuff if ! is_installed python-qt3; then + if [ "${DIST:0:3}" = ".el" ] || [ "${DIST:0:3}" = ".fc" ]; then + eval ${PKGINST} qt3-MySQL qt3-ODBC qt3-PostgreSQL + fi grpiu 3rdparty/python-qt3 eval ${PKGINST} python-qt3-devel || exit 1 fi -if [ "${DIST:0:4}" = ".oss" ]; then + +## PCSC-PERL: for smartcardauth +if [ "${DIST:0:4}" = ".oss" ] || [ "${DIST:0:3}" = ".el" ]; then if ! is_installed pcsc-perl; then grpiu 3rdparty/pcsc-perl eval ${PKGINST} pcsc-perl || exit 1 fi fi +## Lilypond: needed for rosegarden +if [ "${DIST}" = ".el6" ]; then + if ! is_installed mftrace; then + grpiu 3rdparty/mftrace + eval ${PKGINST} mftrace || exit 1 + fi + if ! is_installed lilypond; then + grpiu 3rdparty/lilypond + eval ${PKGINST} lilypond || exit 1 + fi +fi + # TDE libraries grpiud libraries/libkdcraw grpiud libraries/libkexiv2 @@ -258,7 +277,9 @@ grpiui applications/kvirc grpiui applications/kvkbd grpiui applications/piklab grpiui applications/potracegui -grpiui applications/rosegarden +if [ "${DIST}" != ".el4" ] && [ "${DIST}" != ".el5" ]; then + grpiui applications/rosegarden +fi grpiui applications/smartcardauth grpiui applications/smb4k grpiui applications/soundkonverter |