diff options
author | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
---|---|---|
committer | reg <reg@FreeBSD.org> | 2000-04-17 08:18:05 +0800 |
commit | 8b766534122d71052c9f8e5a0752944edf0450f8 (patch) | |
tree | 255862bd3b0c32802317a9ddc3193fd714753916 /german/staroffice70/Makefile | |
parent | e0c8ef49d897de0719277097a1e6578f291f493e (diff) | |
download | freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.gz freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.tar.zst freebsd-ports-gnome-8b766534122d71052c9f8e5a0752944edf0450f8.zip |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Diffstat (limited to 'german/staroffice70/Makefile')
-rw-r--r-- | german/staroffice70/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/german/staroffice70/Makefile b/german/staroffice70/Makefile index cbe4b941e920..2714cfc1bfab 100644 --- a/german/staroffice70/Makefile +++ b/german/staroffice70/Makefile @@ -35,18 +35,18 @@ TMPDIR= ${WRKDIR}/tmp .include <bsd.port.pre.mk> -.if defined(USE_CDROM) +.if defined(WITH_CDROM) .if !exists(/cdrom/linux/office51/setup.zip) IGNORE="Please mount the Sun StarOffice 5.1 CDROM onto /cdrom and run make again." .endif .else # FTP/web download DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} .if !exists(${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE="Please manually download ${DISTNAME}${EXTRACT_SUFX} from http://www.sun.com/staroffice. Put ${DISTNAME}${EXTRACT_SUFX} into the directory ${_DISTDIR} and run make again. Or, if you have the Sun StarOffice 5.1 CDROM, please run 'make USE_CDROM=yes'" +IGNORE="Please manually download ${DISTNAME}${EXTRACT_SUFX} from http://www.sun.com/staroffice. Put ${DISTNAME}${EXTRACT_SUFX} into the directory ${_DISTDIR} and run make again. Or, if you have the Sun StarOffice 5.1 CDROM, please run 'make WITH_CDROM=yes'" .endif .endif -.if defined(USE_CDROM) +.if defined(WITH_CDROM) do-extract: @${MKDIR} ${WRKSRC}/office51 @cd ${WRKSRC}/office51 && ${LN} -s /cdrom/linux/office51/* . |