openbsd-ports/editors/nano/Makefile

48 lines
1.2 KiB
Makefile
Raw Normal View History

2013-03-11 07:02:49 -04:00
# $OpenBSD: Makefile,v 1.71 2013/03/11 11:02:50 espie Exp $
COMMENT= Pico editor clone with enhancements
DISTNAME= nano-2.2.6
CATEGORIES= editors
HOMEPAGE= http://www.nano-editor.org/
2000-09-23 08:38:21 -04:00
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
MASTER_SITES= http://www.nano-editor.org/dist/v2.2/ \
2009-12-01 14:39:31 -05:00
${MASTER_SITE_GNU:=nano/}
# GPLv3
PERMIT_PACKAGE_CDROM= Yes
2004-08-10 04:32:35 -04:00
MODULES= devel/gettext
WANTLIB= c ncursesw
2012-08-06 08:21:05 -04:00
# required to build HTML version of man pages
BUILD_DEPENDS= textproc/groff>=1.21
SEPARATE_BUILD= Yes
2006-11-07 10:31:37 -05:00
CONFIGURE_STYLE=gnu
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
2003-10-04 19:26:36 -04:00
post-install:
perl -i -pe 's:SYSCONFDIR:${SYSCONFDIR}:g;' \
2010-08-18 15:41:45 -04:00
-e 's:PREFIX:${TRUEPREFIX}:g;' \
${PREFIX}/man/man1/nano.1 \
${PREFIX}/man/man5/nanorc.5 \
${PREFIX}/info/nano.info
2003-10-04 19:26:36 -04:00
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/nano
${INSTALL_DATA} ${WRKBUILD}/doc/nanorc.sample \
2010-08-18 15:41:45 -04:00
${PREFIX}/share/examples/nano
# convenience target for maintainer to regen the syntax highlighting patches
nanorc-patches: extract
cd ${WRKSRC}/doc/syntax; \
for i in *.nanorc; do \
mv $$i $$i.orig; \
sed -e 's/\\</[[:<:]]/g' -e 's/\\>/[[:>:]]/g' $$i.orig >$$i; \
cmp $$i.orig $$i && mv $$i.orig $$i; \
done
2009-12-01 14:39:31 -05:00
.include <bsd.port.mk>