diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-02-13 10:55:47 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-02-13 10:55:47 +0000 |
commit | a6aa1d0483759af886b99bc7091b1cf3adb20670 (patch) | |
tree | 73a67b0b3ae8d3099b5db6a22a9223edef98fa3c /app-office/scribus/scribus-1.4.9999.ebuild | |
parent | ppc64 stable wrt #395193 (diff) | |
download | gentoo-2-a6aa1d0483759af886b99bc7091b1cf3adb20670.tar.gz gentoo-2-a6aa1d0483759af886b99bc7091b1cf3adb20670.tar.bz2 gentoo-2-a6aa1d0483759af886b99bc7091b1cf3adb20670.zip |
Fix for crash when exporting pixmaps, http://bugs.scribus.net/view.php?id=10509 ; added live 1.4
(Portage version: 2.2.0_alpha86/cvs/Linux x86_64)
Diffstat (limited to 'app-office/scribus/scribus-1.4.9999.ebuild')
-rw-r--r-- | app-office/scribus/scribus-1.4.9999.ebuild | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/app-office/scribus/scribus-1.4.9999.ebuild b/app-office/scribus/scribus-1.4.9999.ebuild new file mode 100644 index 000000000000..1e12dde6cc88 --- /dev/null +++ b/app-office/scribus/scribus-1.4.9999.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/scribus/scribus-1.4.9999.ebuild,v 1.1 2012/02/13 10:55:47 jlec Exp $ + +EAPI=4 + +PYTHON_DEPEND="2" + +inherit cmake-utils fdo-mime multilib python subversion + +DESCRIPTION="Desktop publishing (DTP) and layout program" +HOMEPAGE="http://www.scribus.net/" +#SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +SRC_URI="" +ESVN_REPO_URI="svn://scribus.net/branches/Version14x/Scribus" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="cairo debug examples +minimal +pdf spell templates" + +# a=$(ls resources/translations/po/scribus.*ts | sed -e 's:\.: :g' | awk '{print $2}'); echo ${a} +IUSE_LINGUAS=" af ar bg br ca cs_CZ cy da_DK de_1901 de_CH de el en_AU en_GB en_US es_ES et eu fi fr gl hu id it ja ko lt_LT nb_NO nl pl_PL pt_BR pt ru sa sk_SK sl sq sr sv th_TH tr uk zh_CN zh_TW" +IUSE+=" ${IUSE_LINGUAS// / linguas_}" + +COMMON_DEPEND=" + dev-libs/hyphen + dev-libs/libxml2 + media-libs/fontconfig + media-libs/freetype:2 + media-libs/lcms:2 + media-libs/libpng:0 + media-libs/tiff:0 + net-print/cups + sys-libs/zlib + x11-libs/qt-core:4 + x11-libs/qt-gui:4 + virtual/jpeg + spell? ( app-text/aspell ) + pdf? ( app-text/podofo ) + cairo? ( x11-libs/cairo[X,svg] )" +RDEPEND="${COMMON_DEPEND} + app-text/ghostscript-gpl" +DEPEND="${COMMON_DEPEND} + dev-libs/boost" + +PATCHES=( + "${FILESDIR}"/${PN}-1.4.0_rc5-docs.patch + ) + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + if use templates; then + sed '/ADD_SUBDIRECTORY(resources\/templates)/d' -i CMakeLists.txt || die + fi + if use examples; then + sed '/ADD_SUBDIRECTORY(samples)/d' -i scribus/plugins/scriptplugin/CMakeLists.txt || die + fi + + sed \ + -e '1i#define OF(x) x' \ + -i scribus/fileunzip.cpp scribus/unzip.h scribus/ioapi.h || die + + base_src_prepare + subversion_src_prepare +} + +src_configure() { + local lang langs + for lang in ${IUSE_LINGUAS}; do + use linguas_${lang} && langs+=",${lang}" + done + + local mycmakeargs=( + -DHAVE_PYTHON=ON + -DPYTHON_INCLUDE_PATH=$(python_get_includedir) + -DPYTHON_LIBRARY=$(python_get_library) + -DWANT_NORPATH=ON + -DWANT_QTARTHUR=ON + -DWANT_QT3SUPPORT=OFF + -DGENTOOVERSION=${PVR} + -DWANT_GUI_LANG=${langs#,} + $(cmake-utils_use_has spell ASPELL) + $(cmake-utils_use_has pdf PODOFO) + $(cmake-utils_use_want cairo) + $(cmake-utils_use_want minimal NOHEADERINSTALL) + $(cmake-utils_use_want debug DEBUG) + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + mv "${ED}"/usr/share/doc/${PF}/{en,html} || die + ln -sf html "${ED}"/usr/share/doc/${PF}/en || die + docompress -x /usr/share/doc/${PF}/en + doicon resources/icons/scribus.png + domenu scribus.desktop +} + +pkg_preinst() { + # 399595 + rm -vf "${ED}"/usr/share/doc/${PF}/en* || die + ln -sf html "${ED}"/usr/share/doc/${PF}/en + subversion_pkg_preinst +} + +pkg_postinst() { + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_mime_database_update +} |