mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
d16f7bfb92
PR. Thanks for contributing. Since the acroread7 port is a somewhat important port for our users, I will hand it over to emulation@ if no _active_ *committer* takes it before the ports freeze. While I'm here: - fix a little nit in the csound port (I think the intention was to create no backup file instead of creating one with a "-e" extension) - set ARCH to i386 in the amd64 case for the acroread7 port. This is a work-around to be able to install everything when a dependency is not already installed (ARCH is read-only in sub-makes, so the dependencies can't change it). This should be removed when the dependencies are fixed or converted to use bsd.linux-rpm.mk. [1] Not objected to by: portmgr (explicit: krion; silence: rest) Maintainer timeout: ~4 months Submitted by: Sangwoo Shim <sangwoos@gmail.com> [1] PR: 87985 [1]
32 lines
596 B
Makefile
32 lines
596 B
Makefile
# New ports collection makefile for: rfstool
|
|
# Date created: 2005-03-02
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rfstool
|
|
PORTVERSION= 0.14
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_NETBSD}
|
|
DISTNAME= rfstool-0.14-source
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Read from a Reiser file system
|
|
|
|
PLIST_FILES= bin/rfstool
|
|
USE_ZIP= yes
|
|
WRKSRC= ${WRKDIR}/rfstool-0.14/RFSTOOL
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.if ${OSVERSION} >= 500035
|
|
MAKEFILE= makefile.gcc3x
|
|
.else
|
|
MAKEFILE= makefile.gcc2x
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rfstool ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|