1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00
freebsd-ports/x11/erun/Makefile
Kevin Bowling da3162c7c9 graphics/mesa-libs: Bump reverse deps for libglvnd
Per discussion with bapt on helping pkg handle the changing of these
deps and avoiding impossible upgrade senarios.

PR:		246767
Reviewed by:	manu, bapt
Approved by:	x11
Differential Revision:	https://reviews.freebsd.org/D30824
2021-06-22 11:53:08 -07:00

32 lines
709 B
Makefile

# Created by: Kelly Yancey <kbyanc@posi.net>
PORTNAME= E-Run
PORTVERSION= 1.2
PORTREVISION= 15
CATEGORIES= x11
MASTER_SITES= LOCAL/kbyanc
MAINTAINER= enlightenment@FreeBSD.org
COMMENT= Simple epplet for launching arbitrary programs
LIB_DEPENDS= libepplet.so:x11-wm/epplets \
libImlib2.so:graphics/imlib2
PLIST_FILES= bin/E-Run.epplet
WRKSRC= ${WRKDIR}/${PORTNAME}
USES= gl
USE_GL= gl
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -lpthread -L${LOCALBASE}/lib -lepplet -lImlib2 -lGL
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} ${CPPFLAGS} -o ${PORTNAME}.epplet \
${PORTNAME}.c ${LDFLAGS}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME}.epplet ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>