mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
4c46ca73d8
Add USES=xorg and USES=gl to ports in categories starting with 'x' While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
35 lines
865 B
Makefile
35 lines
865 B
Makefile
# Created by: Yukihiro Nakai <nakai@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= epplets
|
|
PORTVERSION= 0.14
|
|
PORTREVISION= 8
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= SF/enlightenment/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= enlightenment@FreeBSD.org
|
|
COMMENT= Collection of Enlightenment dock applications
|
|
|
|
BUILD_DEPENDS= e16:x11-wm/e16
|
|
LIB_DEPENDS= libcdaudio.so:audio/libcdaudio
|
|
RUN_DEPENDS= e16:x11-wm/e16 \
|
|
import:graphics/ImageMagick6
|
|
|
|
USES= gl gmake libtool pkgconfig xorg
|
|
USE_XORG= xext
|
|
USE_GL= glut
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-auto-respawn \
|
|
--disable-esound
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|<machine/soundcard\.h>|<sys/soundcard.h>|g' \
|
|
${WRKSRC}/epplets/Emix.c
|
|
@${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|g' \
|
|
${WRKSRC}/epplets/mbox.c
|
|
|
|
.include <bsd.port.mk>
|