Bug 99634 - graphics/gnash dependencies not updated after gtkglext version bump
Summary: graphics/gnash dependencies not updated after gtkglext version bump
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Stefan Walter
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-30 07:30 UTC by Rémy Oudompheng
Modified: 2006-07-02 17:29 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rémy Oudompheng 2006-06-30 07:30:13 UTC
graphics/gnash depends on gtkglext, but the Makefile reads 

gtkglext-x11-1.0.2:${PORTSDIR}/x11-toolkits/gtkglext

whereas the last version bump of gtkglext changed the library name to lib/libgtkglext-x11-1.0.so.0.

Fix: 

changing LIB_DEPENDS to gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext works, but I don't know whether it is the right way.
How-To-Repeat: Install the new gtkglext then try to reinstall gnash
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2006-06-30 07:30:24 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback
Comment 2 Dmitry Marakasov 2006-06-30 10:48:07 UTC
* Edwin Groothuis (edwin@FreeBSD.org) wrote:
> If it contains a patch for an upgrade, an enhancement or a bug fix
> you agree on, reply to this email stating that you approve the patch
> and a committer will take care of it.

I approve, thanks Remy. Patch follows.

--- gnash-Makefile.patch begins here ---
--- Makefile.orig	Tue Jun  6 16:45:25 2006
+++ Makefile	Fri Jun 30 13:44:51 2006
@@ -43,7 +43,7 @@
 PLIST_SUB+=	PLUGIN="@comment "
 .else
 USE_GNOME+=	atk pango gtk20
-LIB_DEPENDS+=	gtkglext-x11-1.0.2:${PORTSDIR}/x11-toolkits/gtkglext
+LIB_DEPENDS+=	gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext
 PLIST_SUB+=	PLUGIN=""
 .endif
 
--- gnash-Makefile.patch ends here ---

-- 
Best regards,
 Dmitry                          mailto:amdmi3@mail.ru
Comment 3 Mark Linimon freebsd_committer freebsd_triage 2006-06-30 12:49:41 UTC
State Changed
From-To: feedback->open

Maintainer approved.
Comment 4 Stefan Walter freebsd_committer freebsd_triage 2006-07-02 07:50:43 UTC
Responsible Changed
From-To: freebsd-ports-bugs->stefan

Take.
Comment 5 Stefan Walter freebsd_committer freebsd_triage 2006-07-02 17:28:55 UTC
State Changed
From-To: open->closed

Patch committed, thanks for the PR!