summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Volynets <iluxa@gentoo.org>2009-08-09 11:15:04 +0000
committerIlya Volynets <iluxa@gentoo.org>2009-08-09 11:15:04 +0000
commit8da2de12f54ed3270e715fdd9abb5496e531c4f3 (patch)
treee0a14f856c063a84710b59ae7d73020fb790c9ce /dev-cpp/sptk
parentEnable USE a52 aac mp4 x264 and xvid by default (acked by beandog). (diff)
downloadgentoo-2-8da2de12f54ed3270e715fdd9abb5496e531c4f3.tar.gz
gentoo-2-8da2de12f54ed3270e715fdd9abb5496e531c4f3.tar.bz2
gentoo-2-8da2de12f54ed3270e715fdd9abb5496e531c4f3.zip
Remove old version of SPTK
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-cpp/sptk')
-rw-r--r--dev-cpp/sptk/ChangeLog6
-rw-r--r--dev-cpp/sptk/sptk-2.3.28.ebuild46
2 files changed, 5 insertions, 47 deletions
diff --git a/dev-cpp/sptk/ChangeLog b/dev-cpp/sptk/ChangeLog
index e146771c8a3f..4e7579532df7 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.62 2009/08/09 11:10:58 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.63 2009/08/09 11:15:04 iluxa Exp $
+
+ 09 Aug 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+ -sptk-2.3.28.ebuild:
+ Remove unused version, now that newer stable is available
*sptk-3.5.8.14-r1 (09 Aug 2009)
diff --git a/dev-cpp/sptk/sptk-2.3.28.ebuild b/dev-cpp/sptk/sptk-2.3.28.ebuild
deleted file mode 100644
index 3d645000746f..000000000000
--- a/dev-cpp/sptk/sptk-2.3.28.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-2.3.28.ebuild,v 1.6 2008/11/15 12:09:14 coldwind Exp $
-
-EAPI=1
-
-IUSE="fltk odbc"
-
-DESCRIPTION="C++ user interface toolkit for X with database and Excel support"
-SRC_URI="http://sptk.tts-sf.com/sptk-${PV}.tbz2"
-HOMEPAGE="http://sptk.tts-sf.com"
-
-SLOT="2"
-LICENSE="|| ( FLTK GPL-2 )"
-KEYWORDS="x86 ~sparc ~mips ~amd64 ~ppc"
-
-DEPEND="fltk? ( x11-libs/fltk:1.1 )
- odbc? ( >=dev-db/unixODBC-2.2.6 )"
-
-src_compile() {
-
- local myconf
- myconf="--enable-shared"
-
- use odbc || myconf="${myconf} --disable-odbc" #default enabled
- use fltk || myconf="${myconf} --disable-fltk"
-
- econf \
- --prefix=/usr \
- ${myconf} || die "Configuration Failed"
-
- emake || die "Parallel Make Failed"
-}
-
-src_install () {
-
- einstall \
- includedir="${D}"/usr/include/sptk \
- libdir="${D}"/usr/lib || die "Installation Failed"
-
- dodoc CHANGES README
-
- dodir /usr/share/doc/"${PF}"/html
- mv "${D}"/usr/share/doc/sptk/* "${D}"/usr/share/doc/"${PF}"/html
- rmdir "${D}"/usr/share/doc/sptk
-}