diff options
author | 2010-09-25 20:34:24 +0000 | |
---|---|---|
committer | 2010-09-25 20:34:24 +0000 | |
commit | a4cd901f02bbcbde946f169b72d0dc44fd6e8566 (patch) | |
tree | 565819879549842236fb0906fd5574bed27773d8 /app-office/kexi/kexi-2.2.2.ebuild | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-a4cd901f02bbcbde946f169b72d0dc44fd6e8566.tar.gz gentoo-2-a4cd901f02bbcbde946f169b72d0dc44fd6e8566.tar.bz2 gentoo-2-a4cd901f02bbcbde946f169b72d0dc44fd6e8566.zip |
Re-added the database management application of koffice
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'app-office/kexi/kexi-2.2.2.ebuild')
-rw-r--r-- | app-office/kexi/kexi-2.2.2.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-office/kexi/kexi-2.2.2.ebuild b/app-office/kexi/kexi-2.2.2.ebuild new file mode 100644 index 000000000000..d131ea73ac8e --- /dev/null +++ b/app-office/kexi/kexi-2.2.2.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/kexi/kexi-2.2.2.ebuild,v 1.1 2010/09/25 20:34:24 dilfridge Exp $ + +EAPI="2" + +KMNAME="koffice" +inherit kde4-meta + +DESCRIPTION="KOffice integrated environment for database management." +KEYWORDS="~amd64 ~x86" +IUSE="freetds mysql postgres reports xbase" + +DEPEND=" + sys-libs/readline + app-arch/bzip2 + ~app-office/kspread-${PV}:${SLOT} + freetds? ( dev-db/freetds ) + mysql? ( virtual/mysql ) + postgres? ( =dev-libs/libpqxx-2.6* ) + reports? ( + ~app-office/kchart-${PV}:${SLOT}[reports] + ~app-office/koffice-libs-${PV}:${SLOT}[reports] + ) + xbase? ( dev-db/xbase ) +" +RDEPEND="${DEPEND}" + +KMLOADLIBS="koffice-libs" +KMEXTRACTONLY=" + libs/ + kspread/ +" + +src_configure() { + mycmakeargs=( + -DWITH_WEBFORMS=Off + $(cmake-utils_use_with freetds FreeTDS) + $(cmake-utils_use_with mysql MySQL) + $(cmake-utils_use_with postgres PostgreSQL) + $(cmake-utils_use_with postgres Pqxx) + $(cmake-utils_use_with xbase XBase) + -DBUILD_kexi=ON + $(cmake-utils_use_build reports koreport) + ) + + kde4-meta_src_configure +} + +src_install() { + kde4-meta_src_install + + # this is already installed by koffice-data + rm -f "${D}/usr/include/config-opengl.h" +} |