mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
c0a7a1f972
Approved by: pav
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
# New ports collection makefile for: DeCurs
|
|
# Date created: 19 January 2002
|
|
# Whom: Miguel Mendez <flynn@energyhq.homeip.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= decurs
|
|
PORTVERSION= 0.55.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://varg.dyndns.org/psi/files/
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= A GTK+ based program that lets you edit you XFree86 mouse cursors
|
|
|
|
LIB_DEPENDS= gtkmm-2.0.6:${PORTSDIR}/x11-toolkits/gtkmm20
|
|
|
|
USE_XORG= x11
|
|
USE_GNOME= gnometarget gtk20
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386"
|
|
BROKEN= Does not compile on !i386
|
|
.endif
|
|
|
|
post-patch:
|
|
@${SED} -e 's:%%PREFIX%%:${PREFIX}:g' \
|
|
${FILESDIR}/decurs.exec > ${WRKSRC}/decurs.exec
|
|
# Hack for contemporary GCC
|
|
@${REINPLACE_CMD} -e 's/CppString \&str/const &/' \
|
|
${WRKSRC}/src/cppstring.cc ${WRKSRC}/src/cppstring.hh
|
|
@${REINPLACE_CMD} -E 's/^\/\/ friend//; s/([^:])ostream/\1std::ostream/g' \
|
|
${WRKSRC}/src/cppstring.hh
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/decurs ${PREFIX}/bin/decurs.bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/decurs.exec ${PREFIX}/bin/decurs
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/fonts/*.bdf ${DATADIR}
|
|
|
|
.include <bsd.port.post.mk>
|