diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch) | |
tree | e1a018208ceade04ca56a70c5184978cac51853e /german/staroffice52/Makefile | |
parent | Replace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff) |
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
Notes
Notes:
svn path=/head/; revision=27679
Diffstat (limited to 'german/staroffice52/Makefile')
-rw-r--r-- | german/staroffice52/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/german/staroffice52/Makefile b/german/staroffice52/Makefile index e451d1beac1e..e8803cfa666c 100644 --- a/german/staroffice52/Makefile +++ b/german/staroffice52/Makefile @@ -33,18 +33,18 @@ WRKSRC= ${WRKDIR}/so51inst .include <bsd.port.pre.mk> -.if defined(USE_CDROM) +.if defined(WITH_CDROM) .if !exists(${CD_MOUNTPT}/linux/office51/setup.zip) IGNORE= "Bitte mounten Sie die Sun StarOffice 5.1 CDROM and starten Sie make erneut." .endif .else # FTP/web download DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} .if !exists(${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE="Bitte laden Sie ${DISTNAME}${EXTRACT_SUFX} manuell von http://www.sun.com/staroffice herunter. Kopieren Sie ${DISTNAME}${EXTRACT_SUFX} in das Verzeichnis ${_DISTDIR} und starten Sie make erneut. Wenn Sie die StarOffice 5.1 CDROM besitzen, koennen Sie auch 'make USE_CDROM=yes' ausfuehren." +IGNORE="Bitte laden Sie ${DISTNAME}${EXTRACT_SUFX} manuell von http://www.sun.com/staroffice herunter. Kopieren Sie ${DISTNAME}${EXTRACT_SUFX} in das Verzeichnis ${_DISTDIR} und starten Sie make erneut. Wenn Sie die StarOffice 5.1 CDROM besitzen, koennen Sie auch 'make WITH_CDROM=yes' ausfuehren." .endif .endif -.if defined(USE_CDROM) +.if defined(WITH_CDROM) do-extract: @${MKDIR} ${WRKSRC}/office51 @cd ${WRKSRC}/office51 && ${LN} -s ${CD_MOUNTPT}/linux/office51/* . |