blob: b6abc17184d691c809d79dab15154ffbe272679e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# New ports collection makefile for: gpart
# Date created: 29 Sep 1999
# Whom: Andrew Stevenson <andrew@ugh.net.au>
#
# $FreeBSD$
#
PORTNAME= gpart
PORTVERSION= 0.1h
PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= system/filesystems
MAINTAINER= mandree@FreeBSD.org
COMMENT= Tries to recover lost partition tables and file systems
LICENSE= GPLv2
DEPRECATED= Upstream disappeared
EXPIRATION_DATE= 2011-09-15
USE_GMAKE= yes
MAKE_JOBS_SAFE= yes
MAN8= gpart.8
PLIST_FILES= sbin/gpart
CFLAGS+= -std=c99
.if defined(WANT_STATIC)
MAKE_ARGS+= LDFLAGS=-static
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386" && ${ARCH} != "alpha" && ${ARCH} != "amd64"
BROKEN= Only compiles on i386, amd64 and alpha.
.endif
.include <bsd.port.post.mk>
|