diff options
Diffstat (limited to 'distribution/posix')
-rw-r--r-- | distribution/posix/CMakeLists.txt | 31 | ||||
-rwxr-xr-x | distribution/posix/postinst | 21 | ||||
-rwxr-xr-x | distribution/posix/prerm | 22 |
3 files changed, 70 insertions, 4 deletions
diff --git a/distribution/posix/CMakeLists.txt b/distribution/posix/CMakeLists.txt index 3356005..6e44581 100644 --- a/distribution/posix/CMakeLists.txt +++ b/distribution/posix/CMakeLists.txt @@ -8,7 +8,12 @@ set(CPACK_RPM_PACKAGE_GROUP "Applications/Engineering") set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}////xtrkcad-desc.txt") set(CPACK_PACKAGE_FILE_NAME "xtrkcad-setup-${XTRKCAD_VERSION}-${CPACK_PACKAGE_RELEASE}.${CMAKE_SYSTEM_PROCESSOR}") -set(CPACK_INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX} ) +if(XTRKCAD_PACKAGE_GA_RELEASE) + set(CPACK_INSTALL_PREFIX "/usr" ) +else() + set(CPACK_INSTALL_PREFIX "/usr/local" ) +endif() + set(CPACK_PACKAGING_INSTALL_PREFIX ${CPACK_INSTALL_PREFIX}) # get the specific configuration for each packager @@ -17,7 +22,7 @@ set(CPACK_PROJECT_CONFIG_FILE ${CMAKE_CURRENT_SOURCE_DIR}/package.txt) set(CPACK_PACKAGE_VENDOR "XTrackCAD Fork Project") # common dependencies for all Linux builds -set(CPACK_RPM_PACKAGE_REQUIRES "glibc gtk2 zip zlib") +set(CPACK_RPM_PACKAGE_REQUIRES "glibc gtk2 zlib") set(CPACK_RPM_BUILDREQUIRES "gcc, cmake >= 2.4.7, pkgconfig, gtk2-devel" @@ -31,6 +36,12 @@ if(NOT XTRKCAD_USE_BROWSER) # message(AUTHOR_WARNING "Add dependency to webkitgtk for viewing help!") endif() +#Add dependency to MiniXML (mxml) if configured +if(XTRKCAD_CREATE_SVG) + set(CPACK_RPM_PACKAGE_REQUIRES + "${CPACK_RPM_PACKAGE_REQUIRES} mxml") +endif() + # exclude these directories from the rpm set(CPACK_RPM_EXCLUDE_FROM_AUTO_FILELIST_ADDITION "/usr/local" @@ -54,13 +65,23 @@ set(CPACK_DEBIAN_PACKAGE_VERSION "1:${XTRKCAD_VERSION}") set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "amd64") -set(CPACK_DEBIAN_PACKAGE_DEPENDS "zip") +set(CPACK_DEBIAN_PACKAGE_DEPENDS "xdg-utils") set(CPACK_DEBIAN_PACKAGE_MAINTAINER "xtrkcad@sillub.com") set(CPACK_PACKAGE_CONTACT "xtrkcad@sillub.com") -set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "XTrkCad description") +set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "XTrkCad supports any scale, has libraries of popular brands of \ +turnouts and sectional track (plus you add your own easily), can \ +automatically use spiral transition curves when joining track \ +XTrkCad lets you manipulate track much like you would with actual \ +flex-track to modify, extend and join tracks and turnouts. \ +Additional features include tunnels, 'post-it' notes, on-screen \ +ruler, parts list, 99 drawing layers, undo/redo commands, \ +benchwork, 'Print to BitMap', elevations, train simulation and \ +car inventory. \ +") + set(CPACK_DEBIAN_PACKAGE_SECTION "contrib/graphics") @@ -74,5 +95,7 @@ set(CPACK_PACKAGE_EXECUTABLES "xtrkcad;XTrkCad-5.2.1-Beta") set(CPACK_CREATE_DESKTOP_LINKS "xtrkcad") +set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CMAKE_CURRENT_SOURCE_DIR}/postinst;${CMAKE_CURRENT_SOURCE_DIR}/prerm") + include(CPack) diff --git a/distribution/posix/postinst b/distribution/posix/postinst new file mode 100755 index 0000000..914534d --- /dev/null +++ b/distribution/posix/postinst @@ -0,0 +1,21 @@ +#!/bin/sh +LOGF=/tmp/xtrkcad-setup.log +if [ -f "${LOGF}" ] ; then + chmod 666 ${LOGF} + echo postinst: $* >> ${LOGF} +else + LOGF=/dev/null +fi + +if [ -d /usr/local/share/xtrkcad ] ; then + INSTALLDIR=/usr/local/share/xtrkcad +elif [ -d /usr/share/xtrkcad ] ; then + INSTALLDIR=/usr/share/xtrkcad +else + echo No existing XTrkCad install >> ${LOGF} + exit 1 +fi + +( su -c "sh ${INSTALLDIR}/xtrkcad-setup install ${INSTALLDIR}" -l $SUDO_USER ) >> ${LOGF} 2>&1 + +exit 0 diff --git a/distribution/posix/prerm b/distribution/posix/prerm new file mode 100755 index 0000000..3c5db28 --- /dev/null +++ b/distribution/posix/prerm @@ -0,0 +1,22 @@ +#!/bin/sh +LOGF=/tmp/xtrkcad-setup.log +if [ -f "${LOGF}" ] ; then + chmod 666 ${LOGF} + echo prerm: $* >> ${LOGF} +else + LOGF=/dev/null +fi + +if [ -d /usr/local/share/xtrkcad ] ; then + INSTALLDIR=/usr/local/share/xtrkcad +elif [ -d /usr/share/xtrkcad ] ; then + INSTALLDIR=/usr/share/xtrkcad +else + echo No existing XTrkCad install >> ${LOGF} + exit 1 +fi + +( su -c "sh ${INSTALLDIR}/xtrkcad-setup remove ${INSTALLDIR}" -l $SUDO_USER ) >> ${LOGF} 2>&1 + +exit 0 + |