aboutsummaryrefslogtreecommitdiffstats
path: root/editors/nano/Makefile
blob: 1f75b317fd2e0628311c6b46bf0818725fb6baf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# New ports collection makefile for:    nano
# Date created:             12 June 2000
# Whom:             Philippe Lefebvre <nemesis@balistik.net>
#
# $FreeBSD$
#

PORTNAME=   nano
PORTVERSION=    1.2.5
CATEGORIES= editors
MASTER_SITES=   http://www.nano-editor.org/dist/v1.2/ \
        http://www.ewtoo.org/~astyanax/nano/dist/v1.2/

MAINTAINER= naddy@FreeBSD.org
COMMENT=    Nano's ANOther editor, an enhanced free Pico clone

GNU_CONFIGURE=  yes
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --enable-all

.if !defined(WITHOUT_NLS)
USE_GETTEXT=    yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif

INFO=       nano
MAN1=       nano.1
MAN5=       nanorc.5

post-build:
    ${REINPLACE_CMD} 's:\$$SYSCONFDIR:${PREFIX}/etc:g' \
        ${WRKSRC}/${MAN1} ${WRKSRC}/${MAN5} ${WRKSRC}/${INFO:=.info}

post-install:
    ${MKDIR} ${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/nanorc.sample ${EXAMPLESDIR}

.include <bsd.port.mk>