public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/falcon/
@ 2016-01-31 15:08 Pacho Ramos
  0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos @ 2016-01-31 15:08 UTC (permalink / raw
  To: gentoo-commits

commit:     4204fc8c40c6fa5b5a2b6fe384c1f737834fc2b5
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 31 15:07:19 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 15:08:05 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4204fc8c

dev-lang/falcon: Fix missing dep on gtk2 (#573478 by Toralf Förster)

Package-Manager: portage-2.2.27

 dev-lang/falcon/falcon-0.9.6.8.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-lang/falcon/falcon-0.9.6.8.ebuild b/dev-lang/falcon/falcon-0.9.6.8.ebuild
index 2ca4c7b..99ccad8 100644
--- a/dev-lang/falcon/falcon-0.9.6.8.ebuild
+++ b/dev-lang/falcon/falcon-0.9.6.8.ebuild
@@ -23,7 +23,9 @@ DEPEND="
 	curl? ( net-misc/curl )
 	dbus? ( sys-apps/dbus )
 	gd? ( media-libs/gd:= )
-	gtk? ( dev-libs/glib:2 )
+	gtk? (
+		dev-libs/glib:2
+		x11-libs/gtk+:2 )
 	mysql? ( virtual/libmysqlclient:= )
 	readline? ( sys-libs/readline:0 )
 	pdf? ( media-libs/libharu )


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/falcon/
@ 2016-01-31 15:08 Pacho Ramos
  0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos @ 2016-01-31 15:08 UTC (permalink / raw
  To: gentoo-commits

commit:     ee2af5a921e5d16f26b0cbfb4a767ecd4244c2b6
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 31 15:07:55 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Jan 31 15:08:07 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee2af5a9

dev-lang/falcon: Drop old

Package-Manager: portage-2.2.27

 dev-lang/falcon/Manifest              |  1 -
 dev-lang/falcon/falcon-0.9.6.4.ebuild | 51 -----------------------------------
 2 files changed, 52 deletions(-)

diff --git a/dev-lang/falcon/Manifest b/dev-lang/falcon/Manifest
index 3f6fa0e..245e9f1 100644
--- a/dev-lang/falcon/Manifest
+++ b/dev-lang/falcon/Manifest
@@ -1,2 +1 @@
-DIST Falcon-0.9.6.4.tar.gz 1782796 SHA256 24f4294f93c192f21d3590795a9fdd864c3f2d376cb0baac9c1e11e893cfaf81 SHA512 244fc0cc6811d9c918a1983d93e380982584016d84752b00d3adc17e46d7a7cbf9d20f09b7562316b1c9ea6eaaa91c1cb931f4469f7d510d9084f1daaca732a5 WHIRLPOOL 2178d6307fcd516f490fada540af649a60ca39f8640215b926f153316ab349ed9b46e47c7849270a20632e9639ca65d635f88ed4d0a2fccf718967ce83106a8b
 DIST Falcon-0.9.6.8.tgz 11772705 SHA256 f4b00983e7f91a806675d906afd2d51dcee048f12ad3af4b1dadd92059fa44b9 SHA512 f354a058d9075a636c0b2db339fd86adda9b4a4bc7c229186b73aa200e059a21b311a4944b1b7388b4992390e4d540af8832e4b2cea31d7f956df1dd96f2f59c WHIRLPOOL cc42e7d250aea223162703a52b5f9461d52db6051d29dfb26320ce740fe6b502e8c8f474bb97809dc238fb23ce8cb99e9ec6d35fb01656a20e9d9b3d8b3b24e0

diff --git a/dev-lang/falcon/falcon-0.9.6.4.ebuild b/dev-lang/falcon/falcon-0.9.6.4.ebuild
deleted file mode 100644
index 89e124c..0000000
--- a/dev-lang/falcon/falcon-0.9.6.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit cmake-utils multilib
-
-MY_P=${P/f/F}
-
-DESCRIPTION="An open source general purpose untyped language written in C++"
-HOMEPAGE="http://falconpl.org/"
-SRC_URI="http://falconpl.org/project_dl/_official_rel/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug readline"
-
-DEPEND="
-	dev-libs/libpcre
-	sys-libs/zlib
-	readline? ( sys-libs/readline )
-"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_P}
-
-DOCS="AUTHORS ChangeLog README RELNOTES"
-
-src_configure() {
-	mycmakeargs=(
-		-DFALCON_DISABLE_RPATH=ON
-		-DFALCON_LIB_DIR=$(get_libdir)
-		-DFALCON_SKIP_BISON=ON
-		-DFALCON_WITH_MANPAGES=ON
-		-DFALCON_WITH_INTERNAL_PCRE=OFF
-		-DFALCON_WITH_INTERNAL_ZLIB=OFF
-		-DFALCON_WITH_GPL_READLINE=ON
-		$(cmake-utils_use readline FALCON_WITH_EDITLINE)
-	)
-	cmake-utils_src_configure
-}
-
-src_test() {
-	FALCON_LOAD_PATH=".;${CMAKE_BUILD_DIR}/core/clt"
-	for testsuite in "${S}/core/tests/testsuite" "${S}/modules/feathers/tests/testsuite"; do
-		"${CMAKE_BUILD_DIR}/core/clt/faltest/faltest" \
-			-d "${testsuite}" || die "faltest in ${testsuite} failed"
-	done
-}


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

end of thread, other threads:[~2016-01-31 15:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-31 15:08 [gentoo-commits] repo/gentoo:master commit in: dev-lang/falcon/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2016-01-31 15:08 Pacho Ramos

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