mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
39 lines
660 B
Makefile
39 lines
660 B
Makefile
# 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
|
|
|
|
MAN1= chrpath.1
|
|
|
|
USES= fmake
|
|
|
|
PLIST_FILES= bin/chrpath
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
. for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|