mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +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)
38 lines
824 B
Makefile
38 lines
824 B
Makefile
# New ports collection makefile for: E-Buttons
|
|
# Date created: 30 March 2000
|
|
# Whom: jhb
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= E-buttons
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 8
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://freebsd.unixfreunde.de/sources/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= A simple epplet that contains several buttons used to launch programs
|
|
|
|
LIB_DEPENDS= epplet.3:${PORTSDIR}/x11-wm/epplets
|
|
|
|
PLIST_FILES= bin/E-Buttons.epplet
|
|
|
|
WRKSRC= ${WRKDIR}/E-buttons
|
|
|
|
USE_GL= gl
|
|
USE_EFL= imlib2
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib -lepplet -lGL -lImlib2 ${PTHREAD_LIBS}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} -o E-Buttons.epplet \
|
|
${PORTNAME}.c ${LDFLAGS}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/E-Buttons.epplet ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|