diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-06 20:09:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-02-06 20:09:46 +0000 |
commit | 80bce3727c31615f4a81fd4f49b206f2e231e867 (patch) | |
tree | 4b75a8931b61d2d4586650a529e97affff1eb5d8 /dev-cpp | |
parent | dev-libs/libspnav: 0.2.2 (bug #390427) (diff) | |
download | gentoo-2-80bce3727c31615f4a81fd4f49b206f2e231e867.tar.gz gentoo-2-80bce3727c31615f4a81fd4f49b206f2e231e867.tar.bz2 gentoo-2-80bce3727c31615f4a81fd4f49b206f2e231e867.zip |
Version bump (for bug #402149 to gain FLTK 1.3.x support)
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/sptk/ChangeLog | 9 | ||||
-rw-r--r-- | dev-cpp/sptk/sptk-4.13.ebuild | 72 |
2 files changed, 79 insertions, 2 deletions
diff --git a/dev-cpp/sptk/ChangeLog b/dev-cpp/sptk/ChangeLog index f6ce40d8971d..2f3d73b4a592 100644 --- a/dev-cpp/sptk/ChangeLog +++ b/dev-cpp/sptk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/sptk -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.73 2011/05/23 13:48:26 iluxa Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.74 2012/02/06 20:09:46 ssuominen Exp $ + +*sptk-4.13 (06 Feb 2012) + + 06 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> +sptk-4.13.ebuild: + Version bump (for bug #402149 to gain FLTK 1.3.x support) *sptk-4.11 (23 May 2011) diff --git a/dev-cpp/sptk/sptk-4.13.ebuild b/dev-cpp/sptk/sptk-4.13.ebuild new file mode 100644 index 000000000000..0f348973a6ae --- /dev/null +++ b/dev-cpp/sptk/sptk-4.13.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-4.13.ebuild,v 1.1 2012/02/06 20:09:46 ssuominen Exp $ + +EAPI=1 + +inherit cmake-utils eutils + +DESCRIPTION="C++ user interface toolkit for X with database and Excel support" +SRC_URI="http://www.sptk.net/sptk-${PV}.tbz2" +HOMEPAGE="http://www.sptk.net" + +SLOT="4" +LICENSE="BSD" +KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86" +IUSE="fltk odbc doc sqlite excel postgres aspell mysql gnutls" + +RDEPEND=" + aspell? ( >=app-text/aspell-0.50 ) + fltk? ( x11-libs/fltk:1 ) + gnutls? ( net-libs/gnutls ) + mysql? ( virtual/mysql ) + odbc? ( >=dev-db/unixODBC-2.2.6 ) + postgres? ( >=dev-db/postgresql-base-8.0 ) + sqlite? ( >=dev-db/sqlite-3 )" + +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +CMAKE_IN_SOURCE_BUILD=1 + +src_unpack() { + unpack ${A} + cd "${S}" +} + +src_compile() { + local mycmakeargs="$(cmake-utils_use_no postgres POSTGRESQL) + $(cmake-utils_use_no mysql MYSQL) + $(cmake-utils_use_no sqlite SQLITE3) + $(cmake-utils_use_no odbc ODBC) + $(cmake-utils_use_no aspell ASPELL) + $(cmake-utils_use_no fltk FLTK) + $(cmake-utils_use_no excel EXCEL) + $(cmake-utils_use_no gnutls TLS)" + + mycmakeargs="${mycmakeargs} -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} -DNO_EXAMPLES:BOOLEAN=TRUE" + + cmake-utils_src_configure + + cmake-utils_src_compile + if use doc; then + cd "${S}" + einfo "Fixing sptk3.doxygen" + sed -i -e 's,/cvs/sptk3/,,g' sptk3.doxygen + einfo "Building docs" + doxygen sptk3.doxygen + fi +} + +src_install () { + DOCS="README AUTHORS" + cmake-utils_src_install + + dodir /usr/share/doc/${PF} + cp -r "${S}"/docs/* "${D}"/usr/share/doc/${PF} + if use doc; then + rm -fr "${D}/usr/share/doc/${PF}/latex" + cp -rf "${S}/pictures" "${D}/usr/share/doc/${PF}" + fi + [ -f mv "${D}/usr/bin/sql2cpp.pl" ] && mv "${D}/usr/bin/sql2cpp.pl" "${D}/usr/bin/sql2cpp" +} |