mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
32 lines
690 B
Makefile
32 lines
690 B
Makefile
# New ports collection makefile for: nbd-server
|
|
# Date created: 14 december 2003
|
|
# Whom: Christian Laursen <xi@borderworlds.dk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nbd-server
|
|
PORTVERSION= 2.8.5
|
|
PORTEPOCH= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= nbd
|
|
DISTNAME= nbd-${PORTVERSION}
|
|
|
|
MAINTAINER= rebehn@ant.uni-bremen.de
|
|
COMMENT= A server for the linux network block device (nbd)
|
|
|
|
USE_BZIP2= yes
|
|
USE_GNOME= glib20
|
|
USE_GETOPT_LONG=yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --enable-lfs --enable-syslog
|
|
|
|
PLIST_FILES= bin/nbd-server
|
|
MAN1= nbd-server.1
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/nbd.h ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|