1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/x11/ipager/Makefile
Grzegorz Blach a781a6e13c - Remove Mk/bsd.efl.mk
- Convert USE_EFL=libtool_hack to USES=libtool
- Convert USE_EFL=imlib2 to LIB_DEPENDS=libImlib2.so:...
- Bump PORTVERSION in graphics/imlib2 and in all ports
  which depends on imlib2

PR:		196062
Approved by:	portmgr
2014-12-27 00:09:02 +00:00

52 lines
1.0 KiB
Makefile

# Created by: Vlad V. Teterya <vlad@vlad.uz.ua>
# $FreeBSD$
PORTNAME= ipager
PORTVERSION= 1.1.0
PORTREVISION= 9
CATEGORIES= x11
MASTER_SITES= http://useperl.ru/ipager/src/
MAINTAINER= lme@FreeBSD.org
COMMENT= X11 pager program
LICENSE= MIT
LIB_DEPENDS= libImlib2.so:${PORTSDIR}/graphics/imlib2
USES= scons
SUB_FILES= pkg-message
DOCS= ChangeLog README ToDo
THEMES= atlantis.conf \
dark_red.conf \
green.conf \
industrial.conf \
light_gray.conf \
light_orange.conf
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e '35,36d;89d;92,94d' \
-e "s/\([^-]pthread'\)/\1, 'X11'/" \
${WRKSRC}/SConstruct
pre-build:
# scons is too stupid to create DESTDIR by itself
@${MKDIR} ${WRKDIR}/stage
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
.endfor
${MKDIR} ${STAGEDIR}${DATADIR}/themes
.for t in ${THEMES}
${INSTALL_DATA} ${WRKSRC}/themes/${t} ${STAGEDIR}${DATADIR}/themes
.endfor
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ipager
.include <bsd.port.mk>