Changeset 2078


Ignore:
Timestamp:
29/01/2008 19:40:16 (4 years ago)
Author:
jamesog
Message:

Update FreeBSD port for pending 0.11 release:

  • Remove PREFIX patch for configdir
  • Allow user to set CONFIGDIR if they have config files in a non-standard location
  • Mark BDB as being client-only
Location:
box/james/FreeBSD
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • box/james/FreeBSD/Makefile

    r2009 r2078  
    77 
    88PORTNAME=       boxbackup 
    9 PORTVERSION=    0.10 
    10 PORTREVISION=   1 
     9PORTVERSION=    0.11 
    1110CATEGORIES=     sysutils 
    1211MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE} 
     
    2423ACLOCAL_ARGS+=  -I ${WRKSRC}/infrastructure/m4 
    2524 
     25# CONFDIR may be overridden if you keep /etc files somewhere other than 
     26# $PREFIX/etc 
     27CONFDIR?=       ${PREFIX}/etc 
     28CONFIGURE_ARGS+=--sysconfdir=${CONFDIR} 
     29 
    2630PKGMESSAGE=     ${WRKDIR}/pkg-message 
    2731 
    2832OPTIONS=        CLIENT "Install the bbackupd client" On \ 
    2933                SERVER "Install the bbstored server" On \ 
    30                 BDB "Enable Berkeley DB" On \ 
     34                BDB "Enable Berkeley DB (client only)" On \ 
    3135                GNUREADLINE "Enable the use of GNU readline" Off \ 
    3236                TESTS  "Allows use of a 'test' target to run tests" Off 
     
    3438.include <bsd.port.pre.mk> 
    3539 
    36 .if defined(WITH_BDB) 
     40.if defined(WITH_BDB) && defined(WITH_CLIENT) 
    3741USE_BDB=        42+ 
    3842CONFIGURE_ARGS+=--with-bdb-lib=${BDB_LIB_DIR} \ 
Note: See TracChangeset for help on using the changeset viewer.