12345678910111213141516171819202122232425262728293031323334353637 |
- # $OpenBSD: Makefile,v 1.89 2017/06/12 16:30:31 naddy Exp $
- COMMENT= Pico editor clone with enhancements
- DISTNAME= nano-2.8.4
- CATEGORIES= editors
- HOMEPAGE= https://www.nano-editor.org/
- MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
- MASTER_SITES= https://www.nano-editor.org/dist/v2.8/ \
- ${MASTER_SITE_GNU:=nano/}
- EXTRACT_SUFX= .tar.xz
- # GPLv3+
- PERMIT_PACKAGE_CDROM= Yes
- LIB_DEPENDS= devel/gettext
- WANTLIB= c iconv intl ncursesw
- CONFIGURE_STYLE=gnu
- CONFIGURE_ARGS= --disable-libmagic
- CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
- # configure tests for groff -Thtml, but assumes the existence of groff
- pre-configure:
- @ln -s /usr/bin/false ${WRKDIR}/bin/groff
- post-install:
- sed -i -e 's:/etc:${SYSCONFDIR}:g;' ${PREFIX}/man/man5/nanorc.5
- ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/nano
- ${INSTALL_DATA} ${WRKBUILD}/doc/sample.nanorc \
- ${PREFIX}/share/examples/nano
- .include <bsd.port.mk>
|