Summary: | [maintainer-update] Fix build by adding 'pkgconf' dependency for games/crossfire-client | ||||||
---|---|---|---|---|---|---|---|
Product: | Ports & Packages | Reporter: | Kevin Zheng <kevinz5000> | ||||
Component: | Individual Port(s) | Assignee: | Bernhard Froehlich <decke> | ||||
Status: | Closed FIXED | ||||||
Severity: | Affects Only Me | ||||||
Priority: | Normal | ||||||
Version: | Latest | ||||||
Hardware: | Any | ||||||
OS: | Any | ||||||
Attachments: |
|
Description
Kevin Zheng
2014-01-26 16:10:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->decke I'll take it. Author: decke Date: Mon Jan 27 16:26:08 2014 New Revision: 341422 URL: http://svnweb.freebsd.org/changeset/ports/341422 QAT: https://qat.redports.org/buildarchive/r341422/ Log: - Stagify - Update dependencies to new shlib format - Fix build by adding USES=pkgconfig - Bump PORTREVISION PR: ports/185556 PR: ports/186131 Submitted by: Kevin Zheng <kevinz5000@gmail.com> (maintainer) Modified: head/games/crossfire-client/Makefile head/games/crossfire-client/pkg-plist Modified: head/games/crossfire-client/Makefile ============================================================================== --- head/games/crossfire-client/Makefile Mon Jan 27 16:22:55 2014 (r341421) +++ head/games/crossfire-client/Makefile Mon Jan 27 16:26:08 2014 (r341422) @@ -3,7 +3,7 @@ PORTNAME= crossfire-client PORTVERSION= 1.70.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games MASTER_SITES= SF/crossfire/crossfire-${PORTVERSION} @@ -13,9 +13,10 @@ COMMENT= Cooperative multiplayer graphic LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/curl GNU_CONFIGURE= yes +USES= pkgconfig USE_GL= glut USE_GNOME= gtk20 libglade2 USE_SDL= sdl image mixer @@ -24,9 +25,6 @@ CONFIGURE_ARGS+= --disable-alsa --disabl CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN6= crossfire-client-gtk2.6 - -NO_STAGE= yes post-patch: ${REINPLACE_CMD} -e '/#include <curl\/types.h>/d' \ ${WRKSRC}/common/metaserver.c @@ -36,8 +34,8 @@ post-patch: post-install: ${CP} ${WRKSRC}/pixmaps/48x48.png ${WRKSRC}/pixmaps/crossfire-client.png ${INSTALL_DATA} ${WRKSRC}/gtk-v2/crossfire-client.desktop \ - ${PREFIX}/share/applications + ${STAGEDIR}${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/pixmaps/crossfire-client.png \ - ${PREFIX}/share/pixmaps + ${STAGEDIR}${PREFIX}/share/pixmaps .include <bsd.port.mk> Modified: head/games/crossfire-client/pkg-plist ============================================================================== --- head/games/crossfire-client/pkg-plist Mon Jan 27 16:22:55 2014 (r341421) +++ head/games/crossfire-client/pkg-plist Mon Jan 27 16:26:08 2014 (r341422) @@ -1,7 +1,7 @@ bin/cfsndserv bin/crossfire-client-gtk2 +man/man6/crossfire-client-gtk2.6.gz share/applications/crossfire-client.desktop -share/pixmaps/crossfire-client.png %%DATADIR%%/glade-gtk2/caelestis.glade %%DATADIR%%/glade-gtk2/chthonic.glade %%DATADIR%%/glade-gtk2/dialogs.glade @@ -16,6 +16,7 @@ share/pixmaps/crossfire-client.png %%DATADIR%%/glade-gtk2/v1-redux.glade %%DATADIR%%/themes/Black %%DATADIR%%/themes/Standard -@dirrm %%DATADIR%%/glade-gtk2 -@dirrm %%DATADIR%%/themes -@dirrm %%DATADIR%% +share/pixmaps/crossfire-client.png +@dirrmtry %%DATADIR%%/themes +@dirrmtry %%DATADIR%%/glade-gtk2 +@dirrmtry %%DATADIR%% _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed. Thanks! |