mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
8ae5d2d4f9
- Respect CC and PREFIX. - Add a knob to build a static binary. (which is useful to put on a fixit floppy etc.) Approved by: Andrew Stevenson <andrew@ugh.net.au> (MAINTAINER)
25 lines
457 B
Makefile
25 lines
457 B
Makefile
# New ports collection makefile for: gpart
|
|
# Date created: 29 Sep 1999
|
|
# Whom: Andrew Stevenson <andrew@ugh.net.au>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gpart
|
|
PORTVERSION= 0.1g
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.stud.uni-hannover.de/user/76201/gpart/ \
|
|
${MASTER_SITE_SUNSITE}
|
|
MASTER_SITE_SUBDIR= system/filesystems
|
|
|
|
MAINTAINER= andrew@ugh.net.au
|
|
|
|
USE_GMAKE= yes
|
|
MAN8= gpart.8
|
|
|
|
.if defined(WANT_STATIC)
|
|
LDFLAGS= -static
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|