summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2009-10-03 21:34:19 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2009-10-03 21:34:19 +0000
commit6b67fdab7b1ba5eacaeadf0ee6b4dd3a34546e4c (patch)
tree52b8c7c90f521a4c8370dad09a1e204b5ed92223 /dev-cpp/sptk
parentDelete older ebuilds. (diff)
downloadgentoo-2-6b67fdab7b1ba5eacaeadf0ee6b4dd3a34546e4c.tar.gz
gentoo-2-6b67fdab7b1ba5eacaeadf0ee6b4dd3a34546e4c.tar.bz2
gentoo-2-6b67fdab7b1ba5eacaeadf0ee6b4dd3a34546e4c.zip
Remove old not required ebuild in sake of cmake sanity.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/sptk')
-rw-r--r--dev-cpp/sptk/ChangeLog6
-rw-r--r--dev-cpp/sptk/sptk-3.5.7.13.ebuild82
2 files changed, 5 insertions, 83 deletions
diff --git a/dev-cpp/sptk/ChangeLog b/dev-cpp/sptk/ChangeLog
index eedaf7204515..1174695aece2 100644
--- a/dev-cpp/sptk/ChangeLog
+++ b/dev-cpp/sptk/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-cpp/sptk
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.64 2009/09/22 11:00:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.65 2009/10/03 21:34:19 scarabeus Exp $
+
+ 03 Oct 2009; Tomáš Chvátal <scarabeus@gentoo.org>
+ -sptk-3.5.7.13.ebuild:
+ Remove old not required ebuild in sake of cmake sanity.
22 Sep 2009; Markus Meier <maekke@gentoo.org> sptk-3.5.8.14-r1.ebuild:
amd64/x86 stable, bug #285892
diff --git a/dev-cpp/sptk/sptk-3.5.7.13.ebuild b/dev-cpp/sptk/sptk-3.5.7.13.ebuild
deleted file mode 100644
index 6081c6ec5070..000000000000
--- a/dev-cpp/sptk/sptk-3.5.7.13.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 2006-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.7.13.ebuild,v 1.7 2008/12/19 00:19:28 iluxa Exp $
-
-EAPI=1
-
-inherit eutils flag-o-matic autotools multilib
-
-IUSE="fltk odbc doc sqlite excel aspell examples"
-
-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="3"
-LICENSE="|| ( BSD )"
-KEYWORDS="~alpha amd64 ~mips ~ppc ~sparc x86"
-
-RDEPEND="fltk? ( >=x11-libs/fltk-1.1.6:1.1 )
- odbc? ( >=dev-db/unixODBC-2.2.6 )
- sqlite? ( >=dev-db/sqlite-3 )
- aspell? ( >=app-text/aspell-0.50 )"
-
-DEPEND="${RDEPEND}
- dev-util/cmake
- doc? ( app-doc/doxygen )"
-
-check_use() {
- if use ${1}; then
- SPTK_OPTIONS="${SPTK_OPTIONS} -DNO_${2}:BOOLEAN=FALSE"
- else
- SPTK_OPTIONS="${SPTK_OPTIONS} -DNO_${2}:BOOLEAN=TRUE"
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- SPTK_OPTIONS="-DNO_POSTGRESQL:BOOLEAN=TRUE"
- check_use examples EXAMPLES
- #check_use postgres POSTGRESQL
- check_use sqlite3 SQLITE3
- check_use odbc ODBC
- check_use aspell ASPELL
- check_use fltk FLTK
- check_use excel EXCEL
-
- sed -r -i -e 's|SET \(LIBRARY_TYPE STATIC\)|SET \(LIBRARY_TYPE SHARED\)|' src/CMakeLists.txt
- sed -i -e "s:DESTINATION lib:DESTINATION $(get_libdir):g" src/CMakeLists.txt \
- || die "Multilib sed failed"
-
- cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr ${SPTK_OPTIONS} . || die "Configuration Failed"
-}
-
-src_compile() {
-
- emake || die "Parallel Make Failed"
-
- 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 () {
-
- make DESTDIR="${D}" install || die "Installation failed"
-
- dodoc README AUTHORS
-
- 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
-}