1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/editors/gnotepad+/Makefile
Pawel Pekala 16ee287938 - Add staging support
- Convert to new options framework, use options helper
- Remove gnome1 support leftovers
2014-05-06 13:03:45 +00:00

54 lines
1.2 KiB
Makefile

# Created by: brett@peloton.physics.montana.edu
# $FreeBSD$
PORTNAME= gnotepad+
PORTVERSION= 1.3.3
PORTREVISION= 8
CATEGORIES= editors www gnome
MASTER_SITES= SF/gnotepad/gnotepad-stable/${PORTVERSION} \
SF/gnotepad/gnotepad%20User_s%20Manual/${DOCVERSION}:doc
DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}:DEFAULT
MAINTAINER= ports@FreeBSD.org
COMMENT= Simple GTK-based text/HTML editor
LICENSE= GPLv2 GPLv3
LICENSE_COMB= dual
USE_XORG= xpm
USE_GNOME= gnomeprefix gtk12
USES= gettext
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-gnome
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
DOCVERSION= 1.2.0
OPTIONS_DEFINE= DOCS
DOCS_DISTFILES= ${PORTNAME}-help-${DOCVERSION}${EXTRACT_SUFX}:doc
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MDOCS}
PLIST_SUB+= NOPORTDOCS=""
.else
PLIST_SUB+= NOPORTDOCS="@comment "
.endif
post-extract:
.if ${PORT_OPTIONS:MDOCS}
@${MV} ${WRKSRC}/docs ${WRKSRC}/docs.old
@${CP} -R ${WRKDIR}/${PORTNAME}-help-${DOCVERSION}/docs ${WRKSRC}/docs
.endif
post-patch:
@${REINPLACE_CMD} -e 's|\(use_gtkhtml=\)yes|\1no|g' ${WRKSRC}/configure
@${REINPLACE_CMD} '/destdir/ s|gnulocaledir)|DESTDIR)$$(&|' \
${WRKSRC}/po/Makefile.in.in
.include <bsd.port.mk>