mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
32 lines
765 B
Makefile
32 lines
765 B
Makefile
# Created by: Alan Eldridge <alane@geeksrus.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xstow
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
|
|
MAINTAINER= rakuco@FreeBSD.org
|
|
COMMENT= Enhanced replacement for GNU stow written in C++
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
PLIST_FILES= bin/merge-info bin/xstow bin/xstow-static bin/xstow-stow
|
|
MAN1= merge-info.1 xstow.1
|
|
MAN5= xstow.ini.5
|
|
|
|
# This port always installs documentation, so we cannot respect NOPORTDOCS
|
|
PORTDOCS= AUTHORS COPYING ChangeLog NEWS README TODO xstow.html xstow.ini xstow.ini.html
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
(cd ${WRKSRC} && \
|
|
${INSTALL_MAN} AUTHORS COPYING ChangeLog NEWS README TODO ${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|