public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-02-20  7:59 Ilya Volynets (iluxa)
  0 siblings, 0 replies; 7+ messages in thread
From: Ilya Volynets (iluxa) @ 2009-02-20  7:59 UTC (permalink / raw
  To: gentoo-commits

iluxa       09/02/20 07:59:29

  Modified:             ChangeLog
  Added:                sptk-3.5.8.10.ebuild
  Log:
  Add SPTK-3.5.8.10
  (Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)

Revision  Changes    Path
1.51                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	15 Feb 2009 17:20:16 -0000	1.50
+++ ChangeLog	20 Feb 2009 07:59:28 -0000	1.51
@@ -1,6 +1,12 @@
 # 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.50 2009/02/15 17:20:16 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.51 2009/02/20 07:59:28 iluxa Exp $
+
+*sptk-3.5.8.10 (20 Feb 2009)
+
+  20 Feb 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  +sptk-3.5.8.10.ebuild:
+  Add SPTK-3.5.8.10
 
   15 Feb 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
   sptk-3.5.8.9.ebuild:



1.1                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.1&content-type=text/plain

Index: sptk-3.5.8.10.ebuild
===================================================================
# Copyright 2006-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.1 2009/02/20 07:59:28 iluxa Exp $

EAPI=1

inherit eutils flag-o-matic multilib

IUSE="fltk odbc doc sqlite examples excel postgres aspell mysql"

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 )
	postgres? ( >=virtual/postgresql-base-8.0 )
	mysql?    ( dev-db/mysql )
	aspell?   ( >=app-text/aspell-0.50 )"

DEPEND="${RDEPEND}
	dev-util/cmake
	doc?      ( app-doc/doxygen )"

sptk_use_enable() {
	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_use_enable examples EXAMPLES
	sptk_use_enable postgres POSTGRESQL
	sptk_use_enable mysql    MYSQL
	sptk_use_enable sqlite3  SQLITE3
	sptk_use_enable odbc     ODBC
	sptk_use_enable aspell   ASPELL
	sptk_use_enable fltk     FLTK
	sptk_use_enable excel    EXCEL

	cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${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 () {

	emake 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
}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-03-10 12:53 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 7+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-03-10 12:53 UTC (permalink / raw
  To: gentoo-commits

flameeyes    09/03/10 12:53:54

  Modified:             ChangeLog sptk-3.5.8.10.ebuild
  Log:
  Fix typo.
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.53                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	20 Feb 2009 08:02:57 -0000	1.52
+++ ChangeLog	10 Mar 2009 12:53:54 -0000	1.53
@@ -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.52 2009/02/20 08:02:57 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.53 2009/03/10 12:53:54 flameeyes Exp $
+
+  10 Mar 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+  sptk-3.5.8.10.ebuild:
+  Fix typo.
 
   20 Feb 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
   -sptk-3.5.8.8.ebuild:



1.2                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.1&r2=1.2

Index: sptk-3.5.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sptk-3.5.8.10.ebuild	20 Feb 2009 07:59:28 -0000	1.1
+++ sptk-3.5.8.10.ebuild	10 Mar 2009 12:53:54 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 2006-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.1 2009/02/20 07:59:28 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.2 2009/03/10 12:53:54 flameeyes Exp $
 
 EAPI=1
 
@@ -42,7 +42,7 @@
 	sptk_use_enable examples EXAMPLES
 	sptk_use_enable postgres POSTGRESQL
 	sptk_use_enable mysql    MYSQL
-	sptk_use_enable sqlite3  SQLITE3
+	sptk_use_enable sqlite   SQLITE3
 	sptk_use_enable odbc     ODBC
 	sptk_use_enable aspell   ASPELL
 	sptk_use_enable fltk     FLTK






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-03-16 18:56 Ilya Volynets (iluxa)
  0 siblings, 0 replies; 7+ messages in thread
From: Ilya Volynets (iluxa) @ 2009-03-16 18:56 UTC (permalink / raw
  To: gentoo-commits

iluxa       09/03/16 18:56:21

  Modified:             ChangeLog sptk-3.5.8.10.ebuild
  Log:
  Move cmake call to src_compile, per #261975
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.54                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	10 Mar 2009 12:53:54 -0000	1.53
+++ ChangeLog	16 Mar 2009 18:56:21 -0000	1.54
@@ -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.53 2009/03/10 12:53:54 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.54 2009/03/16 18:56:21 iluxa Exp $
+
+  16 Mar 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  sptk-3.5.8.10.ebuild:
+  Move cmake call to src_compile, per #261975
 
   10 Mar 2009; Diego E. Pettenò <flameeyes@gentoo.org>
   sptk-3.5.8.10.ebuild:



1.3                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.2&r2=1.3

Index: sptk-3.5.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sptk-3.5.8.10.ebuild	10 Mar 2009 12:53:54 -0000	1.2
+++ sptk-3.5.8.10.ebuild	16 Mar 2009 18:56:21 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 2006-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.2 2009/03/10 12:53:54 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.3 2009/03/16 18:56:21 iluxa Exp $
 
 EAPI=1
 
@@ -38,7 +38,9 @@
 src_unpack() {
 	unpack ${A}
 	cd "${S}"
+}
 
+src_compile() {
 	sptk_use_enable examples EXAMPLES
 	sptk_use_enable postgres POSTGRESQL
 	sptk_use_enable mysql    MYSQL
@@ -49,9 +51,6 @@
 	sptk_use_enable excel    EXCEL
 
 	cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} .  || die "Configuration Failed"
-}
-
-src_compile() {
 
 	emake || die "Parallel Make Failed"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-03-16 19:14 Ilya Volynets (iluxa)
  0 siblings, 0 replies; 7+ messages in thread
From: Ilya Volynets (iluxa) @ 2009-03-16 19:14 UTC (permalink / raw
  To: gentoo-commits

iluxa       09/03/16 19:14:06

  Modified:             ChangeLog sptk-3.5.8.10.ebuild
  Log:
  Depend on virtual/mysql, not dev-db/mysql
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.55                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.55&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.55&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.54&r2=1.55

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- ChangeLog	16 Mar 2009 18:56:21 -0000	1.54
+++ ChangeLog	16 Mar 2009 19:14:06 -0000	1.55
@@ -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.54 2009/03/16 18:56:21 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.55 2009/03/16 19:14:06 iluxa Exp $
+
+  16 Mar 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  sptk-3.5.8.10.ebuild:
+  Depend on virtual/mysql, not dev-db/mysql
 
   16 Mar 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
   sptk-3.5.8.10.ebuild:



1.4                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.3&r2=1.4

Index: sptk-3.5.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sptk-3.5.8.10.ebuild	16 Mar 2009 18:56:21 -0000	1.3
+++ sptk-3.5.8.10.ebuild	16 Mar 2009 19:14:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 2006-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.3 2009/03/16 18:56:21 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.4 2009/03/16 19:14:06 iluxa Exp $
 
 EAPI=1
 
@@ -20,7 +20,7 @@
 	odbc?     ( >=dev-db/unixODBC-2.2.6 )
 	sqlite?   ( >=dev-db/sqlite-3 )
 	postgres? ( >=virtual/postgresql-base-8.0 )
-	mysql?    ( dev-db/mysql )
+	mysql?    ( virtual/mysql )
 	aspell?   ( >=app-text/aspell-0.50 )"
 
 DEPEND="${RDEPEND}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-04-25 12:35 Ilya Volynets (iluxa)
  0 siblings, 0 replies; 7+ messages in thread
From: Ilya Volynets (iluxa) @ 2009-04-25 12:35 UTC (permalink / raw
  To: gentoo-commits

iluxa       09/04/25 12:35:22

  Modified:             ChangeLog sptk-3.5.8.10.ebuild
  Log:
  Remove "examples" use flag from sptk
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.56                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	16 Mar 2009 19:14:06 -0000	1.55
+++ ChangeLog	25 Apr 2009 12:35:22 -0000	1.56
@@ -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.55 2009/03/16 19:14:06 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.56 2009/04/25 12:35:22 iluxa Exp $
+
+  25 Apr 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  sptk-3.5.8.10.ebuild:
+  Remove examples use flag
 
   16 Mar 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
   sptk-3.5.8.10.ebuild:



1.5                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.4&r2=1.5

Index: sptk-3.5.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sptk-3.5.8.10.ebuild	16 Mar 2009 19:14:06 -0000	1.4
+++ sptk-3.5.8.10.ebuild	25 Apr 2009 12:35:22 -0000	1.5
@@ -1,12 +1,12 @@
 # Copyright 2006-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.4 2009/03/16 19:14:06 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.5 2009/04/25 12:35:22 iluxa Exp $
 
 EAPI=1
 
 inherit eutils flag-o-matic multilib
 
-IUSE="fltk odbc doc sqlite examples excel postgres aspell mysql"
+IUSE="fltk odbc doc sqlite excel postgres aspell mysql"
 
 DESCRIPTION="C++ user interface toolkit for X with database and Excel support"
 SRC_URI="http://www.sptk.net/sptk-${PV}.tbz2"
@@ -41,7 +41,6 @@
 }
 
 src_compile() {
-	sptk_use_enable examples EXAMPLES
 	sptk_use_enable postgres POSTGRESQL
 	sptk_use_enable mysql    MYSQL
 	sptk_use_enable sqlite   SQLITE3
@@ -50,7 +49,7 @@
 	sptk_use_enable fltk     FLTK
 	sptk_use_enable excel    EXCEL
 
-	cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} .  || die "Configuration Failed"
+	cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} -DNO_EXAMPLES:BOOLEAN=TRUE .  || die "Configuration Failed"
 
 	emake || die "Parallel Make Failed"
 






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-05-08  9:09 Ilya Volynets (iluxa)
  0 siblings, 0 replies; 7+ messages in thread
From: Ilya Volynets (iluxa) @ 2009-05-08  9:09 UTC (permalink / raw
  To: gentoo-commits

iluxa       09/05/08 09:09:04

  Modified:             ChangeLog sptk-3.5.8.10.ebuild
  Log:
  Switch SPTK over to cmake-utils eclass
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	25 Apr 2009 12:35:22 -0000	1.56
+++ ChangeLog	8 May 2009 09:09:04 -0000	1.57
@@ -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.56 2009/04/25 12:35:22 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.57 2009/05/08 09:09:04 iluxa Exp $
+
+  08 May 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  sptk-3.5.8.10.ebuild:
+  Switch over to cmake-utils eclass
 
   25 Apr 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
   sptk-3.5.8.10.ebuild:



1.6                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.5&r2=1.6

Index: sptk-3.5.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sptk-3.5.8.10.ebuild	25 Apr 2009 12:35:22 -0000	1.5
+++ sptk-3.5.8.10.ebuild	8 May 2009 09:09:04 -0000	1.6
@@ -1,10 +1,10 @@
 # Copyright 2006-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.5 2009/04/25 12:35:22 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.6 2009/05/08 09:09:04 iluxa Exp $
 
 EAPI=1
 
-inherit eutils flag-o-matic multilib
+inherit multilib cmake-utils
 
 IUSE="fltk odbc doc sqlite excel postgres aspell mysql"
 
@@ -24,35 +24,25 @@
 	aspell?   ( >=app-text/aspell-0.50 )"
 
 DEPEND="${RDEPEND}
-	dev-util/cmake
 	doc?      ( app-doc/doxygen )"
 
-sptk_use_enable() {
-	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}"
-}
+CMAKE_IN_SOURCE_BUILD=1
 
 src_compile() {
-	sptk_use_enable postgres POSTGRESQL
-	sptk_use_enable mysql    MYSQL
-	sptk_use_enable sqlite   SQLITE3
-	sptk_use_enable odbc     ODBC
-	sptk_use_enable aspell   ASPELL
-	sptk_use_enable fltk     FLTK
-	sptk_use_enable excel    EXCEL
+	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 -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} -DNO_EXAMPLES:BOOLEAN=TRUE .  || die "Configuration Failed"
+	mycmakeargs="${mycmakeargs} -D CMAKE_INSTALL_PREFIX:PATH=/usr -D LIBDIR=$(get_libdir) ${SPTK_OPTIONS} -DNO_EXAMPLES:BOOLEAN=TRUE"
+	einfo "mycmakeargs=${mycmakeargs}"
 
-	emake || die "Parallel Make Failed"
+	cmake-utils_src_configure
 
+	cmake-utils_src_compile
 	if use doc; then
 		cd "${S}"
 		einfo "Fixing sptk3.doxygen"
@@ -65,9 +55,8 @@
 
 src_install () {
 
-	emake DESTDIR="${D}" install || die "Installation failed"
-
-	dodoc README AUTHORS
+	DOCS="README AUTHORS"
+	cmake-utils_src_install
 
 	dodir /usr/share/doc/${PF}
 	cp -r "${S}"/docs/* "${D}"/usr/share/doc/${PF}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild
@ 2009-05-08  9:14 Ilya Volynets (iluxa)
  0 siblings, 0 replies; 7+ messages in thread
From: Ilya Volynets (iluxa) @ 2009-05-08  9:14 UTC (permalink / raw
  To: gentoo-commits

iluxa       09/05/08 09:14:51

  Modified:             ChangeLog sptk-3.5.8.10.ebuild
  Log:
  Add gnutls flag to sptk-3.5.8.10 ebuild
  (Portage version: 2.1.6.11/cvs/Linux x86_64)

Revision  Changes    Path
1.58                 dev-cpp/sptk/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/ChangeLog?r1=1.57&r2=1.58

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	8 May 2009 09:09:04 -0000	1.57
+++ ChangeLog	8 May 2009 09:14:51 -0000	1.58
@@ -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.57 2009/05/08 09:09:04 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.58 2009/05/08 09:14:51 iluxa Exp $
+
+  08 May 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
+  sptk-3.5.8.10.ebuild:
+  Add gnutls flag
 
   08 May 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
   sptk-3.5.8.10.ebuild:



1.7                  dev-cpp/sptk/sptk-3.5.8.10.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild?r1=1.6&r2=1.7

Index: sptk-3.5.8.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sptk-3.5.8.10.ebuild	8 May 2009 09:09:04 -0000	1.6
+++ sptk-3.5.8.10.ebuild	8 May 2009 09:14:51 -0000	1.7
@@ -1,12 +1,12 @@
 # Copyright 2006-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.6 2009/05/08 09:09:04 iluxa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.10.ebuild,v 1.7 2009/05/08 09:14:51 iluxa Exp $
 
 EAPI=1
 
 inherit multilib cmake-utils
 
-IUSE="fltk odbc doc sqlite excel postgres aspell mysql"
+IUSE="fltk odbc doc sqlite excel postgres aspell mysql gnutls"
 
 DESCRIPTION="C++ user interface toolkit for X with database and Excel support"
 SRC_URI="http://www.sptk.net/sptk-${PV}.tbz2"
@@ -21,7 +21,8 @@
 	sqlite?   ( >=dev-db/sqlite-3 )
 	postgres? ( >=virtual/postgresql-base-8.0 )
 	mysql?    ( virtual/mysql )
-	aspell?   ( >=app-text/aspell-0.50 )"
+	aspell?   ( >=app-text/aspell-0.50 )
+	gnutls?   ( net-libs/gnutls )"
 
 DEPEND="${RDEPEND}
 	doc?      ( app-doc/doxygen )"
@@ -35,10 +36,10 @@
 	$(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 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"
-	einfo "mycmakeargs=${mycmakeargs}"
 
 	cmake-utils_src_configure
 






^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-05-08  9:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-08  9:09 [gentoo-commits] gentoo-x86 commit in dev-cpp/sptk: ChangeLog sptk-3.5.8.10.ebuild Ilya Volynets (iluxa)
  -- strict thread matches above, loose matches on Subject: below --
2009-05-08  9:14 Ilya Volynets (iluxa)
2009-04-25 12:35 Ilya Volynets (iluxa)
2009-03-16 19:14 Ilya Volynets (iluxa)
2009-03-16 18:56 Ilya Volynets (iluxa)
2009-03-10 12:53 Diego Petteno (flameeyes)
2009-02-20  7:59 Ilya Volynets (iluxa)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox