c01494555d
PR: ports/151657 Submitted by: Pawel Pekala <c0rn at o2.pl>
35 lines
929 B
Makefile
35 lines
929 B
Makefile
# New ports collection makefile for: gkrellmbgchg
|
|
# Date Created: 8 Aug 2002
|
|
# Whom: Chris Stuart <firewolf@lightningfire.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gkrellmbgchg2
|
|
PORTVERSION= 0.1.10
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.bender-suhl.de/stefan/comp/sources/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A plugin for GKrellM, which changes the desktop's background image
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2
|
|
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2
|
|
|
|
USE_GNOME= gtk20
|
|
|
|
PLIST_FILES= libexec/gkrellm2/plugins/gkrellmbgchg.so
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-build:
|
|
cd ${BUILD_WRKSRC} && ${CC} -shared ${CFLAGS} -fPIC \
|
|
`pkg-config --cflags --libs gkrellm` gkrellmbgchg.c \
|
|
-o gkrellmbgchg.so
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/libexec/gkrellm2/plugins
|
|
${INSTALL_DATA} ${WRKSRC}/gkrellmbgchg.so \
|
|
${PREFIX}/libexec/gkrellm2/plugins
|
|
|
|
.include <bsd.port.post.mk>
|