6506e45d69
- Update audio/sdl_mixer to version 1.2.11. - Update graphics/sdl_gfx to version 2.0.20. - Update graphics/sdl_image to version 1.2.10. - Bump portrevisions for all ports depending on audio/sdl_mixer and graphics/sdl_image. - Update Mk/bsd.sdl.mk accordingly for the new shared lib versions. PR: ports/142147 ports/142248 ports/142249 Approved by: miwi (mentor implicit)
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# Ports collection makefile for: asusoled
|
|
# Date created: 2008-09-11
|
|
# Whom: Jung-uk Kim <jkim@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= asusoled
|
|
PORTVERSION= 0.10
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= jkim
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= jkim@FreeBSD.org
|
|
COMMENT= Utility for ASUS USB OLED Display
|
|
|
|
RUN_DEPENDS= ${FONTDIR}/TTF/luxisr.ttf:${PORTSDIR}/x11-fonts/font-bh-ttf
|
|
|
|
USE_SDL= image sdl ttf
|
|
USE_RC_SUBR= asusoled.sh oled_clock.sh
|
|
|
|
PORTDATA= asus.png asus_clock.png
|
|
PORTDOCS= README.FreeBSD
|
|
PLIST_FILES= sbin/asusoled
|
|
SUB_FILES= asusoled.sh oled_clock.sh pkg-message
|
|
|
|
MAKE_ARGS+= TTF_FONT=${FONTDIR}/TTF/luxisr.ttf
|
|
|
|
FONTDIR?= ${LOCALBASE}/lib/X11/fonts
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 800069
|
|
LIB_DEPENDS+= usb-0.1.8:${PORTSDIR}/devel/libusb
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDATA)
|
|
@${MKDIR} ${DATADIR}
|
|
.for i in ${PORTDATA}
|
|
@${INSTALL_DATA} ${WRKSRC}/data/${i} ${DATADIR}
|
|
.endfor
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${CAT} ${PKGMESSAGE} > ${WRKSRC}/README.FreeBSD
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${ECHO}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.post.mk>
|