parent
bbad7cf759
commit
80f7847b40
@ -0,0 +1,84 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="karbon filters/karbon"
|
||||
TSM_EXTRACT_ALSO="lib filters/liboofilter interfaces"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice vector drawing application for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE=""
|
||||
|
||||
DEPEND="~dev-tqt/tqt-${PV}[opengl]
|
||||
~trinity-apps/koffice-libs-${PV}
|
||||
virtual/imagemagick-tools
|
||||
media-libs/libart_lgpl
|
||||
"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkopalette lib/kopalette
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store"
|
||||
|
||||
src_unpack() {
|
||||
trinity-meta-2_src_unpack
|
||||
echo "SUBDIRS = liboofilter karbon" > ${S}/filters/Makefile.am
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
echo "SUBDIRS=$dirlist" > ${S}/lib/Makefile.am
|
||||
trinity-meta-2_src_prepare
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
pushd filters/liboofilter
|
||||
emake
|
||||
cp .libs/liboofilter.a .
|
||||
popd
|
||||
trinity-meta-2_src_compile
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
@ -0,0 +1,86 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="kexi"
|
||||
TSM_EXTRACT_ALSO="lib interfaces"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice integrated environment for database management for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE="mysql postgres"
|
||||
|
||||
DEPEND="~trinity-base/tdelibs-${PV}
|
||||
~trinity-apps/koffice-libs-${PV}
|
||||
sys-libs/readline
|
||||
mysql? ( virtual/mysql )
|
||||
postgres? ( dev-libs/libpqxx )"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkoproperty lib/koproperty
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store
|
||||
libkrossmain lib/kross/main/
|
||||
libkrossapi lib/kross/api/"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
if [[ ! ${dirname} =~ "kross"* ]]
|
||||
then
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
|
||||
echo "SUBDIRS=$dirlist kross" > ${S}/lib/Makefile.am
|
||||
|
||||
sed -i "${S}/kexi/migration/keximigratetest.cpp" \
|
||||
-e "/TDEApplication/ s|\");|\", true, true, true);|"
|
||||
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
local myconf=(
|
||||
$(use_enable mysql)
|
||||
$(use_enable postgres pgsql)
|
||||
)
|
||||
trinity-econf ${myconf[@]}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<use>
|
||||
<flag name="mysql">Build with support for <pkg>virtual/mysql</pkg></flag>
|
||||
<flag name="postgres">Build with support for <pkg>dev-libs/libpqxx</pkg></flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
@ -0,0 +1,69 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="kformula filters/kformula"
|
||||
TSM_EXTRACT_ALSO="lib interfaces"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice formula editor for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE="mysql postgres"
|
||||
|
||||
DEPEND="~trinity-apps/koffice-libs-${PV}
|
||||
~trinity-base/kcontrol-${PV}"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
echo "SUBDIRS=$dirlis" > ${S}/lib/Makefile.am
|
||||
echo "SUBDIRS= kformula" > ${S}/filters/Makefile.am
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
@ -0,0 +1,72 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="kivio filters/kivio"
|
||||
TSM_EXTRACT_ALSO="lib"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice flowchart and diagram tool for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE=""
|
||||
|
||||
DEPEND="~trinity-apps/koffice-libs-${PV}
|
||||
"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkopalette lib/kopalette
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
|
||||
echo "SUBDIRS=$dirlist" > ${S}/lib/Makefile.am
|
||||
echo "SUBDIRS= kivio" > ${S}/filters/Makefile.am
|
||||
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
@ -0,0 +1,63 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="kdgantt kplato"
|
||||
TSM_EXTRACT_ALSO="lib kugar interfaces"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KPlato is a project management application for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE=""
|
||||
|
||||
DEPEND="~trinity-apps/koffice-libs-${PV}
|
||||
"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkstore lib/store"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
echo "SUBDIRS=$dirlist" > ${S}/lib/Makefile.am
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
@ -0,0 +1,85 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="filters/libdialogfilter kpresenter filters/kpresenter"
|
||||
TSM_EXTRACT_ALSO="lib filters/liboofilter filters/generic_wrapper"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice presentation program for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE="arts"
|
||||
|
||||
DEPEND="~trinity-apps/koffice-libs-${PV}"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
|
||||
echo "SUBDIRS=$dirlist" > ${S}/lib/Makefile.am
|
||||
echo "SUBDIRS = liboofilter libdialogfilter kpresenter" > ${S}/filters/Makefile.am
|
||||
|
||||
if ! use arts ; then
|
||||
sed -i "s/-lsoundserver_idl -lmcop//" "${S}/kpresenter/Makefile.am"
|
||||
fi
|
||||
|
||||
for i in $(find "${S}"/lib -iname "*\.ui"); do
|
||||
uic-tqt ${i} > ${i%.ui}.h
|
||||
done
|
||||
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > "${S}"/Makefile.am
|
||||
echo 'install:' >> "${S}"/Makefile.am
|
||||
echo '.PHONY: all' >> "${S}"/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
trinity-meta-2_src_compile
|
||||
pushd "${S}/filters/liboofilter"
|
||||
emake
|
||||
popd
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
@ -0,0 +1,97 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="kspread filters/kspread"
|
||||
TSM_EXTRACT_ALSO="lib interfaces filters/kexi kexi filters/liboofilter"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice spreadsheet application for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
~trinity-apps/koffice-libs-${PV}
|
||||
~trinity-apps/kchart-${PV}
|
||||
~trinity-apps/kexi-${PV}
|
||||
"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store
|
||||
libkochart interfaces
|
||||
libkrossmain lib/kross/main
|
||||
libkrossapi lib/kross/api
|
||||
libkexidb kexi/kexidb
|
||||
libkexidbparser kexi/kexidb/parser"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
if [[ ${dirname} =~ "lib"* ]] && [[ ! ${dirname} =~ "lib/kross"* ]] ; then
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
echo "SUBDIRS=$dirlist kross" > ${S}/lib/Makefile.am
|
||||
|
||||
sed -i "${S}/kexi/migration/keximigratetest.cpp" \
|
||||
-e "/TDEApplication/ s|\");|\", true, true, true);|"
|
||||
|
||||
echo "SUBDIRS = liboofilter kspread" > ${S}/filters/Makefile.am
|
||||
echo "SUBDIRS = applixspread csv dbase gnumeric latex opencalc html qpro excel kexi" > ${S}/filters/kspread/Makefile.am
|
||||
for i in $(find "${S}"/lib -iname "*\.ui"); do
|
||||
uic-tqt ${i} > ${i%.ui}.h
|
||||
done
|
||||
echo "SUBDIRS = kexidb" > ${S}/kexi/Makefile.am
|
||||
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
sed 's|-std=c++11|-std=c++98|' -i "${S}/filters/kspread/qpro/libqpro/src/Makefile"
|
||||
trinity-meta-2_src_compile
|
||||
pushd "${S}/filters/liboofilter"
|
||||
emake
|
||||
popd
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
@ -0,0 +1,73 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 2021 The Trinity Desktop Project
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
TRINITY_MODULE_NAME="koffice"
|
||||
TRINITY_BUILD_ADMIN="yes"
|
||||
TRINITY_SUBMODULE="kugar filters/kugar"
|
||||
TSM_EXTRACT_ALSO="lib interfaces"
|
||||
|
||||
inherit flag-o-matic trinity-meta-2
|
||||
|
||||
DESCRIPTION="KOffice report viewer and generator for TDE [Trinity]"
|
||||
HOMEPAGE="http://trinitydesktop.org/"
|
||||
|
||||
SLOT="${TRINITY_VER}"
|
||||
if [[ ${PV} != *9999* ]] ; then
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE=""
|
||||
|
||||
DEPEND="
|
||||
~trinity-apps/koffice-libs-${PV}
|
||||
"
|
||||
|
||||
RDEPEND="$DEPEND"
|
||||
|
||||
KMCOPYLIB="
|
||||
libkformula lib/kformula
|
||||
libkofficecore lib/kofficecore
|
||||
libkofficeui lib/kofficeui
|
||||
libkopainter lib/kopainter
|
||||
libkoproperty lib/koproperty
|
||||
libkotext lib/kotext
|
||||
libkwmf lib/kwmf
|
||||
libkowmf lib/kwmf
|
||||
libkstore lib/store"
|
||||
|
||||
src_prepare() {
|
||||
local search_path="${TDEDIR}/${get_libdir}"
|
||||
local libname dirname dirlist x
|
||||
libname=""
|
||||
for x in $KMCOPYLIB; do
|
||||
if [ "${libname}" == "" ] ; then
|
||||
libname="${x}"
|
||||
else
|
||||
dirname=$x
|
||||
mkdir -p ${dirname}
|
||||
pushd ${dirname}
|
||||
if [ ! "$(find ${search_path} -maxdepth 1 -name ${libname}*) 2>/dev/null" == "" ]; then
|
||||
ln -s ${TDEDIR}/$(get_libdir)/${libname}* .
|
||||
dirlist="${dirlist} ${dirname/lib\/}"
|
||||
fi
|
||||
popd
|
||||
libname=""
|
||||
fi
|
||||
done
|
||||
|
||||
echo "SUBDIRS=$dirlist" > ${S}/lib/Makefile.am
|
||||
echo "SUBDIRS= kugar" > ${S}/filters/Makefile.am
|
||||
|
||||
trinity-meta-2_src_prepare
|
||||
|
||||
echo 'all:' > ${S}/Makefile.am
|
||||
echo 'install:' >> ${S}/Makefile.am
|
||||
echo '.PHONY: all' >> ${S}/Makefile.am
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags "-std=c++11"
|
||||
trinity-meta-2_src_configure
|
||||
}
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
</pkgmetadata>
|
Loading…
Reference in new issue