4fb2a5e4a5
This version doesn't install metacity theme so remove CONFLICTS and add OPTIONS and stuff back from clearlooks-metacity
73 lines
1.8 KiB
Makefile
73 lines
1.8 KiB
Makefile
# New ports collection makefile for: clearlooks
|
|
# Date created: 2005-02-26
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME?= clearlooks
|
|
PORTVERSION= 0.6.2
|
|
CATEGORIES= x11-themes
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= clearlooks
|
|
DISTNAME= clearlooks-${PORTVERSION}
|
|
|
|
MAINTAINER= ahze@FreeBSD.org
|
|
COMMENT?= GTK+ 2.x engine based on Bluecurve
|
|
|
|
USE_BZIP2= yes
|
|
USE_LIBTOOL_VER=15
|
|
USE_GNOME= gtk20
|
|
USE_X_PREFIX= yes
|
|
USE_REINPLACE= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include" \
|
|
LDFLAGS="-L${X11BASE}/lib"
|
|
|
|
OPTIONS+= METACITY "Depend on MetaCity Theme" On
|
|
.if defined(PORTNAME) && ${PORTNAME} == "clearlooks"
|
|
OPTIONS+= ANIMATION "Enable experimental animated progressbars" Off
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORTNAME} == "clearlooks"
|
|
CONFLICTS+= gtk-engines2-[0-9]* clearlooks-themes[0-9]*
|
|
PLIST_SUB+= ENGINE=""
|
|
.else
|
|
CONFLICTS+= clearlooks-[0-9]*
|
|
|
|
BUILD_DEPENDS+= ${X11BASE}/libdata/pkgconfig/gtk-engines-2.pc:${PORTSDIR}/x11-themes/gtk-engines2
|
|
RUN_DEPENDS+= ${X11BASE}/libdata/pkgconfig/gtk-engines-2.pc:${PORTSDIR}/x11-themes/gtk-engines2
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/themes
|
|
INSTALL_WRKSRC= ${WRKSRC}/themes
|
|
|
|
PLIST_SUB+= ENGINE="@comment "
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_METACITY)
|
|
RUN_DEPENDS+= ${X11BASE}/share/gnome/themes/Clearlooks/metacity-1/metacity-theme-1.xml:${PORTSDIR}/x11-themes/clearlooks-metacity
|
|
.endif
|
|
|
|
.if defined(WITH_ANIMATION)
|
|
CONFIGURE_ARGS+= --enable-animation
|
|
.endif
|
|
|
|
.if ${PORTNAME} == "clearlooks"
|
|
3pre-everything::
|
|
@if [ -n "`${PKG_INFO} -xI '^gtk-engines2*[0-9]*'`" ]; then \
|
|
${ECHO_MSG} ; \
|
|
${ECHO_MSG} "Gnome/gtk-engine users should use ${PORTSDIR}/x11-themes/clearlooks-themes instead" ; \
|
|
${ECHO_MSG} ; \
|
|
${FALSE}; \
|
|
fi
|
|
.endif
|
|
|
|
post-patch:
|
|
.if ${PORTNAME} != "clearlooks"
|
|
@${REINPLACE_CMD} -e 's|gtkrc||' \
|
|
${WRKSRC}/themes/Clearlooks/gtk-2.0/Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|