Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 15003 Details for
Bug 25241
openoffice-ximian-1.1-rc2 [new ebuild]
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
openoffice-ximian-1.1_rc2.ebuild
openoffice-ximian-1.1_rc2.ebuild (text/plain), 17.24 KB, created by
Andreas Proschofsky (RETIRED)
on 2003-07-25 14:10:15 UTC
(
hide
)
Description:
openoffice-ximian-1.1_rc2.ebuild
Filename:
MIME Type:
Creator:
Andreas Proschofsky (RETIRED)
Created:
2003-07-25 14:10:15 UTC
Size:
17.24 KB
patch
obsolete
># Copyright 1999-2003 Gentoo Technologies, Inc. ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > ># IMPORTANT: This is extremely alpha!!! > ># Notes: ># ># This will take a HELL of a long time to compile, be warned. ># According to openoffice.org, it takes approximately 12 hours on a ># P3/600 with 256mb ram. And thats where building is its only task. ># ># It takes about 6 hours on my P4 1.8 with 512mb memory, and the ># build only needs about 2.1GB of disk space - Azarah. ># ># You will also need a bucketload of diskspace ... in the order of ># 4-5 gb free to store all the compiled files and installation ># directories. ># ># The information on how to build and what is required comes from: ># http://www.openoffice.org/dev_docs/source/build_linux.html ># http://tools.openoffice.org/ext_comp.html ># ># Todo: ># ># Get support going for installing a custom language pack. Also ># need to be able to install more than one language pack. > >inherit flag-o-matic eutils ># Compile problems with these ... >filter-flags "-funroll-loops" >filter-flags "-fomit-frame-pointer" >replace-flags "-O3" "-O2" > ># Enable Bytecode Interpreter for freetype ... >append-flags "-DTT_CONFIG_OPTION_BYTECODE_INTERPRETER" > >inherit gcc ># We want gcc3 if possible!!!! >export WANT_GCC_3="yes" > >inherit virtualx > ># Set $ECPUS to amount of processes multiprocessing build should use. ># NOTE: Setting this too high might cause dmake to segfault!! ># Setting this to anything but "1" on my pentium4 causes things ># to segfault :( >[ -z "${ECPUS}" ] && export ECPUS="1" > > >LOC="/opt" >XIMIAN_VER=1.1.24 >PATCHLEVEL=RC2_030718 >MY_PV="${PV/_/}" >INSTDIR="${LOC}/OpenOffice.org${PV}" >PATCHDIR=${WORKDIR}/ooo-build-${XIMIAN_VER} >S="${WORKDIR}/oo_${MY_PV}_src" >DESCRIPTION="Ximian-ized version of OpenOffice.org, a full office productivity suite." >SRC_URI="http://ny1.mirror.openoffice.org/stable/${MY_PV}/OOo_${MY_PV}_source.tar.bz2 > http://sf1.mirror.openoffice.org/stable/${MY_PV}/OOo_${MY_PV}_source.tar.bz2 > http://www.ibiblio.org/pub/packages/openoffice/stable/${MY_PV}/OOo_${MY_PV}_source.tar.bz2 > http://niihau.student.utwente.nl/openoffice/stable/${MY_PV}/OOo_${MY_PV}_source.tar.bz2 > http://ftp.stardiv.de/pub/OpenOffice.org/stable/${MY_PV}/OOo_${MY_PV}_source.tar.bz2 > http://ooo.ximian.com/packages/${PATCHLEVEL}/ooo-build-${XIMIAN_VER}.tar.gz" >HOMEPAGE="http://ooo.ximian.com" > >LICENSE="LGPL-2 | SISSL-1.1" >SLOT="0" >KEYWORDS="~x86 -ppc" >IUSE="gnome kde" > >RDEPEND=">=sys-libs/glibc-2.1 > !=sys-libs/glibc-2.3.1* > >=dev-lang/perl-5.0 > >=x11-libs/gtk+-2.0 > >=gnome-base/libgnome-2.2 > >=gnome-base/gnome-vfs-2.0 > >=net-print/libgnomecups-0.1.4 > >=net-print/gnome-cups-manager-0.16 > >=dev-libs/libxml2-2.0 > >=media-libs/libart_lgpl-2.3.13 > >=x11-libs/startup-notification-0.5 > media-libs/fontconfig > media-gfx/imagemagick > media-libs/libpng > sys-devel/flex > sys-devel/bison > virtual/x11 > app-arch/zip > app-arch/unzip > dev-libs/expat > >=virtual/jdk-1.3.1 > virtual/lpr > ppc? ( >=sys-libs/glibc-2.2.5-r7 > >=sys-devel/gcc-3.2 )" # needed for sqrtl patch recently introduced > >DEPEND="${RDEPEND} > app-shells/tcsh > !app-office/openoffice-bin > !app-office/openoffice" > ># fix a bug with tcsh and dircolors ># ># Azarah -- 10 April 2002 >export LS_COLORS="" > > >pkg_setup() { > > if [ "$(gcc-version)" != "3.2" ] > then > eerror > eerror "This build needs gcc-3.2.x, but due to profile" > eerror "settings, it cannot DEPEND on it, so please merge it" > eerror "manually:" > eerror > eerror " # ebuild ${PORTDIR}/sys-devel/gcc/gcc-3.2.1.ebuild merge" > eerror > eerror "Please make sure that you use the latest availible revision of" > eerror "gcc-3.2. Thus if there is already a gcc-3.2.1-r2 out, use this" > eerror "rather than 3.2.1, etc." > eerror > eerror "As of writing, gcc-3.2.3-r1 seemed to create the most stable builds." > eerror "Also, because OO is such a complex build, ONLY gcc-3.2.3-r1 will be" > eerror "supported!" > eerror > eerror "This process is not highly recomended, as upgrading your compiler" > eerror "without upgrading your distribution can be detrimental to your " > eerror "installation of gentoo, unless you know what you're getting into" > eerror > die > fi > > if [ -z "$(echo ${JDK_HOME} | grep "blackdown")" ] && [ "${FORCE_JAVA}" != "yes" ] > then > eerror > eerror "This ebuild has only been tested with the blackdown port of" > eerror "java. If you use another java implementation, it could fail" > eerror "horribly, so please merge the blackdown-jdk and set it as" > eerror "system VM before proceeding:" > eerror > eerror " # emerge blackdown-jdk" > eerror " # java-config --set-system-vm=blackdown-jdk-<VERSION>" > eerror " # env-update" > eerror " # source /etc/profile" > eerror > eerror "Please adjust <VERSION> according to the version installed in" > eerror "/opt." > eerror > eerror "If you however want to test another JDK (not officially supported)," > eerror "you could do the following:" > eerror > eerror " # export FORCE_JAVA=yes" > eerror > die > fi > > ewarn "****************************************************************" > ewarn " It is important to note that OpenOffice.org is a very fragile " > ewarn " build when it comes to CFLAGS. A number of flags have already " > ewarn " been filtered out. If you experience difficulty merging this " > ewarn " package and use agressive CFLAGS, lower the CFLAGS and try to " > ewarn " merge again. " > ewarn "****************************************************************" > >} > >oo_setup() { > > unset LANGUAGE > unset LANG > > export NEW_GCC="0" > > if [ -x /usr/sbin/gcc-config ] > then > # Do we have a gcc that use the new layout and gcc-config ? > if /usr/sbin/gcc-config --get-current-profile &> /dev/null > then > export NEW_GCC="1" > export GCC_PROFILE="$(/usr/sbin/gcc-config --get-current-profile)" > > # Just recheck gcc version ... > if [ "$(gcc-version)" != "3.2" ] > then > # See if we can get a gcc profile we know is proper ... > if /usr/sbin/gcc-config --get-bin-path ${CHOST}-3.2.1 &> /dev/null > then > export PATH="$(/usr/sbin/gcc-config --get-bin-path ${CHOST}-3.2.1):${PATH}" > export GCC_PROFILE="${CHOST}-3.2.1" > else > eerror "This build needs gcc-3.2 or later!" > eerror > eerror "Use gcc-config to change your gcc profile:" > eerror > eerror " # gcc-config $CHOST-3.2.1" > eerror > eerror "or whatever gcc version is relevant." > die > fi > fi > fi > fi > > export JAVA_BINARY="`which java`" >} > >src_unpack() { > > oo_setup > > cd ${WORKDIR} > unpack OOo_${MY_PV}_source.tar.bz2 ooo-build-${XIMIAN_VER}.tar.gz > > cd ${S} > rm stlport/STLport-4.5.3.patch > epatch ${FILESDIR}/${PV}/newstlportfix.patch > epatch ${FILESDIR}/${PV}/no-mozab.patch > > #Patching the patch because Ximian forgot about czech an slovakian languages > cd ${PATCHDIR}/bin/ > epatch ${FILESDIR}/${PV}/scale-icons.patch > > #Removing Ximians no-mozilla-patches because they do not work and we have a better one ;-) > cd ${PATCHDIR}/patches/${PATCHLEVEL}/ > epatch ${FILESDIR}/${PV}/noximian.patch > > #Some patches to get the beast installed with printing patches enabled > cd ${S} > epatch ${FILESDIR}/${PV}/setup.patch > > # Now for our optimization flags ... > perl -pi -e "s|^CFLAGSOPT=.*|CFLAGSOPT=${CFLAGS}|g" \ > ${S}/solenv/inc/unxlngi3.mk > perl -pi -e "s|^CFLAGSOPT=.*|CFLAGSOPT=${CFLAGS}|g" \ > ${S}/solenv/inc/unxlngi4.mk > > # Some makefiles are not multiprocess ready (Mandrake) > cd ${S}; einfo "Fixing makefiles for multiprocess builds..." > for x in io/source/stm dtrans/source/X11 idlc/source nas zlib toolkit/util \ > comphelper/util padmin/source svtools/util bridges/source/prot_uno \ > framework/util framework/source/unotypes > do > perl -pi -e "s/^(PRJNAME)/MAXPROCESS=1\n\1/" ${x}/makefile.mk > done > > einfo "Applying Ximian OO.org Maps" > ${PATCHDIR}/bin/install-maps ${S} ${PATCHDIR}/ gcc3 > > einfo "Applying Ximian OO.org Patches" > ${PATCHDIR}/patches/apply.pl ${PATCHDIR}/patches/${PATCHLEVEL} ${S} -f > > einfo "Installing / Scaling Icons" > ${PATCHDIR}/bin/scale-icons ${S} > cp -avf ${PATCHDIR}/icons/* ${S} > >} > >get_EnvSet() { > > # Determine what Env file we should be using (Az) > export LinuxEnvSet="LinuxIntelEnv.Set.sh" > use sparc && export LinuxEnvSet="LinuxSparcEnv.Set.sh" > use sparc64 && export LinuxEnvSet="LinuxSparcEnv.Set.sh" > use ppc && export LinuxEnvSet="LinuxPPCEnv.Set.sh" > use alpha && export LinuxEnvSet="LinuxAlphaEnv.Set.sh" > > # Get build specific stuff (Az) > export SOLVER="$(awk '/^UPD=/ {gsub(/\"/, ""); gsub(/UPD=/, ""); print $0}' ${LinuxEnvSet})" > export SOLPATH="$(awk '/^INPATH=/ {gsub(/\"/, ""); gsub(/INPATH=/, ""); print $0}' ${LinuxEnvSet})" > >} > >src_compile() { > addpredict /bin > local buildcmd="" > > oo_setup > > # Setup default compilers (We overide gcc2 if that is default here) > export CC="$(gcc-getCC)" > export CXX="$(gcc-getCXX)" > > # Enable ccache for this build (Az) > if [ "${FEATURES/-ccache/}" = "${FEATURES}" -a \ > "${FEATURES/ccache/}" != "${FEATURES}" -a \ > -d /usr/bin/ccache -a -x /usr/bin/ccache/ccache ] > then > # Build uses its own env with $PATH, etc, so > # we take the easy way out. (Az) > export CC="/usr/bin/ccache/ccache ${CC}" > export CXX="/usr/bin/ccache/ccache ${CXX}" > fi > > # Enable new ccache for this build > if [ "${FEATURES/-ccache/}" = "${FEATURES}" -a \ > "${FEATURES/ccache/}" != "${FEATURES}" -a \ > -x /usr/bin/ccache ] > then > einfo "We're using ccache for this build..." > # Build uses its own env with $PATH, etc, so > # we take the easy way out. (Az) > export CC="/usr/bin/ccache ${CC}" > export CXX="/usr/bin/ccache ${CXX}" > fi > > # Enable distcc for this build (Az) > if [ "${FEATURES/-distcc/}" = "${FEATURES}" -a \ > "${FEATURES/distcc/}" != "${FEATURES}" -a \ > -x /usr/bin/distcc ] > then > einfo "We're using distcc for this build..." > # Do not bump ECPUS if the user did not touch it, as currently > # it -PP do not work properly (segfaulting). (Az) > [ "$(echo ${DISTCC_HOSTS} | wc -w)" -gt 1 -a "${ECPUS}" -qt 1 ] && \ > export ECPUS="$(echo ${DISTCC_HOSTS} | wc -w)" > > export CC="distcc ${CC}" > export CXX="distcc ${CXX}" > fi > > # Do NOT compile with a external STLport, as gcc-2.95.3 users will > # get linker errors due to the ABI being different (STLport will be > # compiled with 2.95.3, while OO is compiled with 3.x). (Az) > einfo "Configuring OpenOffice.org..." > cd ${S}/config_office > autoconf > ./configure \ > --enable-libart \ > --enable-libsn \ > --with-lang=ALL \ > --with-jdk-home=${JAVA_HOME} \ > --with-x || die > > cd ${S} > get_EnvSet > > # Do not include /usr/include in header search path, and > # same thing for internal gcc include dir, as gcc3 handles > # it correctly by default! (Az) > perl -pi -e "s| -I/usr/include||g" ${LinuxEnvSet} ># perl -pi -e "s| -I$(gcc-libpath)/include||g" ${LinuxEnvSet} > > if [ "${NEW_GCC}" -eq "1" ] > then > local gcc_path="$(/usr/sbin/gcc-config --get-bin-path ${GCC_PROFILE})" > > # Setup path for new gcc layout in $LinuxEnvSet, else the build > # environment will not find gcc ... (Az) > perl -pi -e "s|PATH \.:\$SOLARVER|PATH \.:${gcc_path}:\$SOLARVER|" ${LinuxEnvSet} > # New builds start quoting stuff ... > perl -pi -e "s|PATH \"\.:\$SOLARVER|PATH \"\.:${gcc_path}:\$SOLARVER|" ${LinuxEnvSet} > fi > > # Should the build use multiprocessing? > # We use build.pl directly, as dmake tends to segfault. (Az) > if [ "${ECPUS}" -gt 1 ] > then > buildcmd="${S}/solenv/bin/build.pl -all -PP${ECPUS} product=full" > else > buildcmd="${S}/solenv/bin/build.pl -all product=full" > fi > > if [ -z "$(grep 'CCCOMP' ${S}/${LinuxEnvSet})" ] > then > # Set CCCOMP and CXXCOMP. This is still needed for STLport > export CCCOMP=${CC} > export CXXCOMP=${CXX} > fi > > if [ "$(gcc-major-version)" -eq 3 ] > then > mkdir -p ${S}/solver/${SOLVER}/${SOLPATH}/{lib,inc} > > einfo "Installing GCC related libs..." > # Workaround for missing libs with GCC3 (thanks to Debian) (Az) > cd ${S}/solver/${SOLVER}/${SOLPATH}/lib > cp $(gcc-libpath)/libstdc++.so.$(gcc-libstdcxx-major-version)* . || \ > die "Could not copy gcc-libs!" > cp $(gcc-libpath)/libgcc_s.so* . || die "Could not copy gcc-libs!" > cd ${S} > fi > > einfo "Bootstrapping OpenOffice.org..." > # Get things ready for bootstrap (Az) > chmod 0755 ${S}/solenv/bin/*.pl > mkdir -p ${S}/solver/${SOLVER}/${SOLPATH}/inc > touch ${S}/solver/${SOLVER}/${SOLPATH}/inc/minormkchanged.flg > # Bootstrap ... > ./bootstrap > > if [ "$(gcc-major-version)" -eq 3 ] > then > local LIBFILE="$(readlink `gcc-libpath`/libstdc++.so.`gcc-libstdcxx-major-version`)" > local LIBVERSION="$(echo ${LIBFILE} | sed -e 's|libstdc++\.so\.||g')" > # Get this beast to use the right version of libstdc++ ... (Az) > echo "LIBSTDCPP3:=${LIBVERSION}" >> \ > ${S}/solver/${SOLVER}/${SOLPATH}/inc/comp_ver.mk > cd ${S} > fi > > einfo "Building OpenOffice.org..." > source ${S}/${LinuxEnvSet} > cd ${S} > # Build needs X to compile! (Az) > virtualmake dmake || die "Build failed!" > > [ -d ${S}/instsetoo/${SOLPATH} ] || die "Cannot find build directory!" >} > >src_install() { > > # Sandbox issues; bug #11838 > addpredict "/user" > addpredict "/share" > addpredict "/dev/dri" > addpredict "/usr/bin/soffice" > addpredict "/pspfontcache" > > # This allows us to change languages without editing the ebuild. > # > # languages1="ENUS,FREN,GERM,SPAN,ITAL,DTCH,PORT,SWED,POL,RUSS" > # languages2="DAN,GREEK,TURK,CHINSIM,CHINTRAD,JAPN,KOREAN,CZECH,CAT" > # > # Supported languages for localized help files > # > # helplangs="ENUS,FREN,GERM,SPAN,ITAL,SWED" > # > [ -z "${LANGUAGE}" ] && LANGUAGE=01 > > get_EnvSet > > # The install part should now be relatively OK compared to > # what it was. Basically we use autoresponse files to install > # unattended, running under a Xvfb if needed. Afterwards we > # just cleanout ${D} from the registry, etc. This way we > # do not need pre-generated registry, and also fixes some weird > # bugs related to the old way we did things. > # > # <azarah@gentoo.org> (9 Sep 2002) > > # Autoresponse file for main installation > cat > ${T}/rsfile-global <<-"END_RS" > [ENVIRONMENT] > INSTALLATIONMODE=INSTALL_NETWORK > INSTALLATIONTYPE=STANDARD > DESTINATIONPATH=<destdir> > OUTERPATH= > LOGFILE= > LANGUAGELIST=<LANGUAGE> > > [JAVA] > JavaSupport=preinstalled_or_none > END_RS > > # Autoresponse file for user installation > cat > ${T}/rsfile-local <<-"END_RS" > [ENVIRONMENT] > INSTALLATIONMODE=INSTALL_WORKSTATION > INSTALLATIONTYPE=WORKSTATION > DESTINATIONPATH=<home>/.openoffice/<pv> > > [JAVA] > JavaSupport=none > END_RS > > # Fixing install location in response file > sed -e "s|<destdir>|${D}${INSTDIR}|" \ > ${T}/rsfile-global > ${T}/autoresponse > > einfo "Installing OpenOffice.org into build root..." > dodir ${INSTDIR} > cd ${S}/instsetoo/${SOLPATH}/${LANGUAGE}/normal > # Setup virtualmake > export maketype="./setup" > # We need X to install... > virtualmake "-v -noexit -r:${T}/autoresponse" > > echo > einfo "Removing build root from registy..." > # Remove totally useless stuff. > rm -f ${D}${INSTDIR}/program/{setup.log,sopatchlevel.sh} > # Remove build root from registry and co > egrep -rl "${D}" ${D}${INSTDIR}/* | \ > xargs -i perl -pi -e "s|${D}||g" {} || : > > einfo "Fixing permissions..." > # Fix permissions > find ${D}${INSTDIR}/ -type f -exec chmod a+r {} \; > chmod a+x ${D}${INSTDIR}/share/config/webcast/*.pl > > # Fix symlinks > for x in "soffice program/spadmin" \ > "program/setup setup" \ > "program/spadmin spadmin" > do > dosym $(echo ${x} | awk '{print $1}') \ > ${INSTDIR}/$(echo ${x} | awk '{print $2}') > done > > # Install user autoresponse file > insinto /etc/openoffice > sed -e "s|<pv>|${PV//_rc2}|g" ${T}/rsfile-local > ${T}/autoresponse-${PV}.conf > doins ${T}/autoresponse-${PV}.conf > > # Install wrapper script > exeinto /usr/bin > sed -e "s|<pv>|${PV}|g" \ > ${FILESDIR}/${PV}/ooffice-wrapper-1.3 > ${T}/ooffice > doexe ${T}/ooffice > # Component symlinks > dosym ooffice /usr/bin/oocalc > dosym ooffice /usr/bin/oodraw > dosym ooffice /usr/bin/ooimpress > dosym ooffice /usr/bin/oomath > dosym ooffice /usr/bin/oowriter > dosym ooffice /usr/bin/ooweb > dosym ooffice /usr/bin/oosetup > > # Install ximian icons > cd ${PATCHDIR}/artwork/ > insinto /usr/share/pixmaps > doins * > > einfo "Installing Menu shortcuts (need \"gnome\" or \"kde\" in USE)..." > cd ${PATCHDIR}/desktop > rm -f *1.1* > if [ -n "`use gnome`" ] > then > insinto /usr/share/gnome/apps/OpenOffice.org > doins * > fi > > # Unneeded, as they get installed into /usr/share... > # They are needed else user installation fails. ># rm -rf ${D}${INSTDIR}/share/{cde,gnome,kde} > rm -rf ${D}${INSTDIR}/share/cde ># ># for f in ${D}/usr/share/gnome/apps/OpenOffice.org/* ; do ># echo 'Categories=Application;Office;' >> ${f} ># done > > # Make sure these do not get nuked. > keepdir ${INSTDIR}/user/registry/res/en-us/org/openoffice/{Office,ucb} > keepdir ${INSTDIR}/user/psprint/{driver,fontmetric} > keepdir ${INSTDIR}/user/{autocorr,backup,plugin,store,temp,template} >} > >pkg_postinst() { > > einfo "******************************************************************" > einfo " To start OpenOffice.org, run:" > einfo > einfo " $ ooffice" > einfo > einfo " Also, for individual components, you can use any of:" > einfo > einfo " oocalc, oodraw, ooimpress, oomath, ooweb or oowriter" > einfo > einfo " If the fonts appear garbled in the user interface refer to " > einfo " Bug 8539, or http://www.openoffice.org/FAQs/fontguide.html#8" > einfo > einfo "******************************************************************" >} >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 25241
:
14989
|
15003
|
15457
|
17681
|
18579
|
18999
|
20134
|
20196
|
20633