mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
35 lines
820 B
Makefile
35 lines
820 B
Makefile
# New ports collection makefile for: gkrellmlaunch
|
|
# Date Created: Tue Nov 6 19:15:45 EST 2001
|
|
# Whom: Patrick Li <pat@databits.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gkrellmlaunch
|
|
PORTVERSION= 0.4
|
|
PORTREVISION= 4
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An application launcher plugin for GKrellM
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm
|
|
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm
|
|
|
|
PLIST_FILES= libexec/gkrellm/plugins/gkrellmlaunch.so
|
|
USE_GNOME= imlib
|
|
ALL_TARGET= ${PORTNAME}.so
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${ARCH} == "amd64"
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.so \
|
|
${PREFIX}/libexec/gkrellm/plugins
|
|
|
|
.include <bsd.port.post.mk>
|