2013-03-11 07:02:49 -04:00
|
|
|
# $OpenBSD: Makefile,v 1.71 2013/03/11 11:02:50 espie Exp $
|
2000-06-24 10:31:37 -04:00
|
|
|
|
2007-09-15 20:44:00 -04:00
|
|
|
COMMENT= Pico editor clone with enhancements
|
2001-04-06 21:30:01 -04:00
|
|
|
|
2010-12-03 11:45:07 -05:00
|
|
|
DISTNAME= nano-2.2.6
|
2000-06-24 10:31:37 -04:00
|
|
|
CATEGORIES= editors
|
2001-10-30 08:03:40 -05:00
|
|
|
HOMEPAGE= http://www.nano-editor.org/
|
2000-06-24 10:31:37 -04:00
|
|
|
|
2000-09-23 08:38:21 -04:00
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
2000-06-24 10:31:37 -04:00
|
|
|
|
2009-12-22 14:21:32 -05:00
|
|
|
MASTER_SITES= http://www.nano-editor.org/dist/v2.2/ \
|
2009-12-01 14:39:31 -05:00
|
|
|
${MASTER_SITE_GNU:=nano/}
|
2000-06-24 10:31:37 -04:00
|
|
|
|
2007-12-27 15:53:18 -05:00
|
|
|
# GPLv3
|
2012-10-15 11:18:31 -04:00
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
2000-06-24 10:31:37 -04:00
|
|
|
|
2004-08-10 04:32:35 -04:00
|
|
|
MODULES= devel/gettext
|
2010-12-03 11:45:07 -05:00
|
|
|
WANTLIB= c ncursesw
|
2000-06-24 10:31:37 -04:00
|
|
|
|
2012-08-06 08:21:05 -04:00
|
|
|
# required to build HTML version of man pages
|
|
|
|
BUILD_DEPENDS= textproc/groff>=1.21
|
|
|
|
|
2012-03-29 09:38:12 -04:00
|
|
|
SEPARATE_BUILD= Yes
|
2006-11-07 10:31:37 -05:00
|
|
|
CONFIGURE_STYLE=gnu
|
2011-11-14 04:48:46 -05:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
2010-12-03 11:45:07 -05:00
|
|
|
|
2003-10-04 19:26:36 -04:00
|
|
|
post-install:
|
2006-12-14 16:26:53 -05:00
|
|
|
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
|
2006-12-14 16:26:53 -05:00
|
|
|
${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
|
|
|
|
2000-06-24 10:31:37 -04:00
|
|
|
.include <bsd.port.mk>
|