1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/sysutils/xstow/Makefile
Raphael Kubo da Costa 578989b7b2 Update to 1.0.0.
- Adopt port.
- Declare the plist in Makefile itself.
- Remove unnecessary patches.
- Mark MAKE_JOBS_SAFE.
- Use make instead of GNU make.
- Enable debug builds.
- Install additional documentation.

Approved by:	makc (mentor)
2011-11-09 21:36:28 +00:00

36 lines
842 B
Makefile

# New ports collection makefile for: xstow
# Date created: 2002-12-31
# Whom: 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
MAKE_JOBS_SAFE= 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
post-install:
(cd ${WRKSRC} && \
${INSTALL_MAN} AUTHORS COPYING ChangeLog NEWS README TODO ${DOCSDIR})
.include <bsd.port.mk>