freebsd-ports/x11-wm/compiz-plugins-extra/Makefile
Tijl Coosemans aad09bc5e2 When linking a library libA with a library libB using libtool, if libB.la
exists, libtool will add all libraries libB.la refers to (dependency_libs
field) to the linker command line and store them in the dependency_libs
field of libA.la.  So everything that subsequently links with libA will also
link to these extra libraries.  This causes too much overlinking.

This commit modifies Mk/Uses/libtool.mk so it empties the dependency_libs
field in .la libraries during staging.  However, because .la libraries have
very limited use when dependency_libs is empty it makes sense to completely
remove them during staging.

So with this commit USES=libtool is modified to remove .la libraries and a
new form (USES=libtool:keepla) is introduced in case they need to be kept
(dependency_libs is still emptied).

PORTREVISION is bumped on all ports with USES=libtool that install .la
libraries.  Most ports are also changed to add :keepla because .la
libraries have to be kept around as long as there are dependent ports with
.la libraries that refer to them in their dependency_libs field.  In most
cases :keepla can be removed again as soon as all dependent ports that
install .la libraries have some form of USES=libtool added to their
Makefile.

PR:		ports/188759
Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-04-23 13:25:16 +00:00

63 lines
1.8 KiB
Makefile

# Created by: Robert Noland <rnoland@FreeBSD.org>
# $FreeBSD$
PORTNAME= compiz-plugins-extra
PORTVERSION= 0.8.4
PORTREVISION= 7
CATEGORIES= x11-wm
MASTER_SITES= http://releases.compiz.org/${PORTVERSION}/
MAINTAINER= ports@FreeBSD.org
COMMENT= Plugins for Compiz Composite Window Manager
LIB_DEPENDS= libcairo.so:${PORTSDIR}/graphics/cairo \
libnotify.so:${PORTSDIR}/devel/libnotify
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/compiz.pc:${PORTSDIR}/x11-wm/compiz \
${LOCALBASE}/libdata/pkgconfig/bcop.pc:${PORTSDIR}/devel/compiz-bcop \
${LOCALBASE}/libdata/pkgconfig/compiz-text.pc:${PORTSDIR}/x11-wm/compiz-plugins-main
RUN_DEPENDS:= ${BUILD_DEPENDS}
GNU_CONFIGURE= yes
USE_GL= yes
USES= gettext gmake libtool:keepla pathfix pkgconfig tar:bzip2
USE_GNOME= intltool
USE_XORG= glproto
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
GCONF_SCHEMAS= compiz-3d.schemas \
compiz-addhelper.schemas \
compiz-animationaddon.schemas \
compiz-bench.schemas \
compiz-bicubic.schemas \
compiz-crashhandler.schemas \
compiz-cubeaddon.schemas \
compiz-extrawm.schemas \
compiz-fadedesktop.schemas \
compiz-firepaint.schemas \
compiz-gears.schemas \
compiz-grid.schemas \
compiz-group.schemas \
compiz-loginout.schemas \
compiz-maximumize.schemas \
compiz-mblur.schemas \
compiz-notification.schemas \
compiz-reflex.schemas \
compiz-scalefilter.schemas \
compiz-shelf.schemas \
compiz-showdesktop.schemas \
compiz-showmouse.schemas \
compiz-splash.schemas \
compiz-trailfocus.schemas \
compiz-wallpaper.schemas \
compiz-widget.schemas
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS= --enable-schemas
post-patch:
@${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \
${WRKSRC}/src/group/group-internal.h \
.include <bsd.port.mk>