diff options
author | dinoex <dinoex@FreeBSD.org> | 2007-02-17 18:04:08 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2007-02-17 18:04:08 +0800 |
commit | c79ef6e7d933f47e3e962f8eceabec1c4c311991 (patch) | |
tree | 2f7b2eb0c28337e057c90e0eccce25e8520625c3 /mail | |
parent | 8a9c4cf47878af8270f3ac0920f0aa21bd673800 (diff) | |
download | freebsd-ports-gnome-c79ef6e7d933f47e3e962f8eceabec1c4c311991.tar.gz freebsd-ports-gnome-c79ef6e7d933f47e3e962f8eceabec1c4c311991.tar.zst freebsd-ports-gnome-c79ef6e7d933f47e3e962f8eceabec1c4c311991.zip |
- fix build on CURRENT (objformat)
with option SMX_WITH_INTERNAL_BERKELEYD
- fix uid mapping
Diffstat (limited to 'mail')
-rw-r--r-- | mail/smx/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/smx/Makefile b/mail/smx/Makefile index 76154a39aec2..44a389f5361e 100644 --- a/mail/smx/Makefile +++ b/mail/smx/Makefile @@ -7,6 +7,7 @@ PORTNAME= smx PORTVERSION= 0.0.0.0 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.sendmail.org/pub/sendmail/ \ ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/mail/sendmail/&,} @@ -109,6 +110,10 @@ CONFIGURE_ARGS+= --disable-pmilter EXTRA_PATCHES+= ${FILESDIR}/batch.patch .endif +post-patch: + ${REINPLACE_CMD} -e 's|echo aout|echo elf|' \ + ${WRKSRC}/db-4.3.28.NC/dist/configure + post-configure: @${CP} ${WRKSRC}/misc/sm.check.sh ${WRKSRC}/misc/sm.setup.sh \ ${WRKDIR}/ @@ -133,7 +138,7 @@ test: regression-test: test pre-install: - if ! pw groupshow smxm; then pw groupadd smxs -g 260; fi + if ! pw groupshow smxs; then pw groupadd smxs -g 260; fi if ! pw groupshow smxq; then pw groupadd smxq -g 261; fi if ! pw groupshow smxc; then pw groupadd smxc -g 262; fi if ! pw groupshow smxm; then pw groupadd smxm -g 263; fi |