mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
37 lines
879 B
Makefile
37 lines
879 B
Makefile
# New ports collection makefile for: E-Buttons
|
|
# Date created: 30 March 2000
|
|
# Whom: jhb
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= E-buttons
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 4
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://freebsd.unixfreunde.de/sources/ \
|
|
http://mirror2.unixfreunde.de/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A simple epplet that contains several buttons used to launch programs
|
|
|
|
LIB_DEPENDS= epplet.1:${PORTSDIR}/x11-wm/epplets
|
|
|
|
PLIST_FILES= bin/E-Buttons.epplet
|
|
|
|
WRKSRC= ${WRKDIR}/E-buttons
|
|
|
|
USE_X_PREFIX= yes
|
|
CPPFLAGS= -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib -lepplet -lGL ${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>
|