blob: 521d2e3484f3ff7227ac3e9aee3f5e3075adf995 (
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
|
# Created by: bms
# $FreeBSD$
PORTNAME= chrpath
PORTVERSION= 0.13
PORTREVISION= 1
CATEGORIES= devel sysutils
MASTER_SITES= http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/
MAINTAINER= ports@FreeBSD.org
COMMENT= Tool to modify DT_RPATH in existing ELF binaries
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
GNU_CONFIGURE= yes
USES= fmake
PLIST_FILES= bin/chrpath
PORTDOCS= AUTHORS ChangeLog NEWS README
OPTIONS_DEFINE= DOCS
post-install:
${MKDIR} ${STAGEDIR}${DOCSDIR}
. for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
. endfor
.include <bsd.port.mk>
|