blob: 6f4330c383129488b867a4556e5020de9b2c74ef (
plain)
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
43
44
|
# Created by: Frank Laszlo <laszlof@vonostingroup.com>
# $FreeBSD$
PORTNAME= readline
PORTVERSION= 6.3${PATCHLEVEL}
CATEGORIES= devel
MASTER_SITES= GNU \
ftp://ftp.cwru.edu/pub/bash/
DISTNAME= ${PORTNAME}-${PORTVERSION:C/^([0-9].[0-9]).*/\1/}
PATCH_SITES= GNU/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}-patches
MAINTAINER= johans@FreeBSD.org
COMMENT= Library for editing command lines as they are typed
LICENSE= GPLv3
OPTIONS_DEFINE= TERMCAP DOCS
OPTIONS_DEFAULT=TERMCAP
TERMCAP_DESC= Link against libtermcap
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INFO= readline rluserman history
PATCHES= 1 2 3 4 5 6 7 8
.for p in ${PATCHES:S/^/00/}
PATCHFILES+= ${PORTNAME}${PORTVERSION:R:S/.//}-${p:C/.*(...)$/\1/}
.endfor
PATCHLEVEL= ${PATCHES:M1:S/1/./}${PATCHES:Q:S/^/./:S/ /./g:E}
.include <bsd.port.options.mk>
pre-configure:
.if ${PORT_OPTIONS:MTERMCAP}
${REINPLACE_CMD} "s/SHOBJ_LDFLAGS =/SHOBJ_LDFLAGS = -ltermcap/" ${WRKSRC}/shlib/Makefile.in
.endif
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libreadline.so.6 \
${STAGEDIR}${PREFIX}/lib/libhistory.so.6
.include <bsd.port.mk>
|