[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / ports

Diff for /ports/Makefile between version 1.22 and 1.23

version 1.22, 2000/04/09 12:45:55 version 1.23, 2000/04/09 16:26:13
Line 2 
Line 2 
 # $FreeBSD: Makefile,v 1.36 1997/10/04 15:54:31 jkh Exp $  # $FreeBSD: Makefile,v 1.36 1997/10/04 15:54:31 jkh Exp $
 #  #
   
   
   .if defined(key) || defined(category) || defined(author)
   
   # set up subdirs from the index, assume it's up-to-date
   _CMD=perl ${.CURDIR}/infrastructure/build/index-retrieve index='${.CURDIR}/INDEX'
   .  if defined(key)
   _CMD+=key='${key}'
   .  endif
   .  if defined(category)
   _CMD+=category='${category}'
   .  endif
   .  if defined(author)
   _CMD+=author='${author}'
   .  endif
   SUBDIR != ${_CMD}
   .else
 SUBDIR += archivers  SUBDIR += archivers
 SUBDIR += astro  SUBDIR += astro
 SUBDIR += audio  SUBDIR += audio
Line 36 
Line 52 
 #SUBDIR += vietnamese  #SUBDIR += vietnamese
 SUBDIR += www  SUBDIR += www
 SUBDIR += x11  SUBDIR += x11
   .endif
   
 PORTSTOP?=      yes  PORTSTOP?=      yes
   

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23