diff options
author | Ilya Volynets <iluxa@gentoo.org> | 2009-02-15 17:20:16 +0000 |
---|---|---|
committer | Ilya Volynets <iluxa@gentoo.org> | 2009-02-15 17:20:16 +0000 |
commit | 91e1b384d2ac18a6bc1a03b64da461954fa73746 (patch) | |
tree | 16b7ad32c5c44d8dbfc4a74852400929492cc9a7 /dev-cpp/sptk | |
parent | Inherit kde-functions.eclass to get rid of pointless use flags and invalid d... (diff) | |
download | gentoo-2-91e1b384d2ac18a6bc1a03b64da461954fa73746.tar.gz gentoo-2-91e1b384d2ac18a6bc1a03b64da461954fa73746.tar.bz2 gentoo-2-91e1b384d2ac18a6bc1a03b64da461954fa73746.zip |
Rename check_use to sptk_use_enable. Replace call to make with call to emake in src_install.
(Portage version: 2.1.6.4/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'dev-cpp/sptk')
-rw-r--r-- | dev-cpp/sptk/ChangeLog | 7 | ||||
-rw-r--r-- | dev-cpp/sptk/sptk-3.5.8.9.ebuild | 24 |
2 files changed, 18 insertions, 13 deletions
diff --git a/dev-cpp/sptk/ChangeLog b/dev-cpp/sptk/ChangeLog index 0b9e557a9dc5..c1f4b8431d34 100644 --- a/dev-cpp/sptk/ChangeLog +++ b/dev-cpp/sptk/ChangeLog @@ -1,6 +1,11 @@ # 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.49 2009/01/19 11:11:40 iluxa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/ChangeLog,v 1.50 2009/02/15 17:20:16 iluxa Exp $ + + 15 Feb 2009; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org> + sptk-3.5.8.9.ebuild: + Rename check_use to sptk_use_enable. Replace call to make with call to emake + in src_install *sptk-3.5.8.9 (19 Jan 2009) diff --git a/dev-cpp/sptk/sptk-3.5.8.9.ebuild b/dev-cpp/sptk/sptk-3.5.8.9.ebuild index c42d60fc60c4..f11919324917 100644 --- a/dev-cpp/sptk/sptk-3.5.8.9.ebuild +++ b/dev-cpp/sptk/sptk-3.5.8.9.ebuild @@ -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.9.ebuild,v 1.1 2009/01/19 11:11:40 iluxa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sptk/sptk-3.5.8.9.ebuild,v 1.2 2009/02/15 17:20:16 iluxa Exp $ EAPI=1 @@ -13,7 +13,7 @@ SRC_URI="http://www.sptk.net/sptk-${PV}.tbz2" HOMEPAGE="http://www.sptk.net" SLOT="3" -LICENSE="|| ( BSD )" +LICENSE="BSD" KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86" RDEPEND="fltk? ( >=x11-libs/fltk-1.1.6:1.1 ) @@ -27,7 +27,7 @@ DEPEND="${RDEPEND} dev-util/cmake doc? ( app-doc/doxygen )" -check_use() { +sptk_use_enable() { if use ${1}; then SPTK_OPTIONS="${SPTK_OPTIONS} -DNO_${2}:BOOLEAN=FALSE" else @@ -39,14 +39,14 @@ src_unpack() { unpack ${A} cd "${S}" - check_use examples EXAMPLES - check_use postgres POSTGRESQL - check_use mysql MYSQL - check_use sqlite3 SQLITE3 - check_use odbc ODBC - check_use aspell ASPELL - check_use fltk FLTK - check_use excel EXCEL + 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" } @@ -67,7 +67,7 @@ src_compile() { src_install () { - make DESTDIR="${D}" install || die "Installation failed" + emake DESTDIR="${D}" install || die "Installation failed" dodoc README AUTHORS |