mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
b9398223bd
Approved by: portmgr blanket
34 lines
675 B
Makefile
34 lines
675 B
Makefile
# Created by: Mike Lockwood <mike@mikelockwood.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zoinks
|
|
PORTVERSION= 0.4.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= editors
|
|
MASTER_SITES= http://zoinks.mikelockwood.com/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= X11 programmer's editor and development environment
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
USE_XORG= xpm
|
|
GNU_CONFIGURE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|^MY_CXXFLAGS|#&|' ${WRKSRC}/configure
|
|
@${FIND} ${WRKSRC} -name *.xpm | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|^"|(char *)"|g'
|
|
|
|
.include <bsd.port.mk>
|