diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-09 18:27:55 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-05-09 18:27:55 +0000 |
commit | e15c9b17ff507ad24807f3d112f238eee544d577 (patch) | |
tree | 591b3d1eef203bf4e7edd6d4678c057651d6aaa2 /mail/missey | |
parent | - Fix MASTER_SITES (diff) |
- Update to 1.1.1
PR: ports/66371
Submitted by: Xin LI <delphij@frontfree.net> (maintainer)
Notes
Notes:
svn path=/head/; revision=108747
Diffstat (limited to 'mail/missey')
-rw-r--r-- | mail/missey/Makefile | 2 | ||||
-rw-r--r-- | mail/missey/distinfo | 4 | ||||
-rw-r--r-- | mail/missey/files/Makefile | 11 |
3 files changed, 7 insertions, 10 deletions
diff --git a/mail/missey/Makefile b/mail/missey/Makefile index acc2f0f2a9bf..4e66320556a8 100644 --- a/mail/missey/Makefile +++ b/mail/missey/Makefile @@ -6,7 +6,7 @@ # PORTNAME= missey -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 CATEGORIES= mail MASTER_SITES= http://snofe.dot66.net/missey/ diff --git a/mail/missey/distinfo b/mail/missey/distinfo index 17f7cb57479c..4ec3e687a0af 100644 --- a/mail/missey/distinfo +++ b/mail/missey/distinfo @@ -1,2 +1,2 @@ -MD5 (missey-1.1.0.tar.bz2) = 668b845922a13c9cfbcae931702954b9 -SIZE (missey-1.1.0.tar.bz2) = 16687 +MD5 (missey-1.1.1.tar.bz2) = d5e8321aac7309d14c8f74e19ea3b5cd +SIZE (missey-1.1.1.tar.bz2) = 17003 diff --git a/mail/missey/files/Makefile b/mail/missey/files/Makefile index b3b8d4a03bb2..229ae22efa71 100644 --- a/mail/missey/files/Makefile +++ b/mail/missey/files/Makefile @@ -8,20 +8,17 @@ OBJS_B = ${SRCS_B:N*.h:R:S/$/.o/} LDFLAGS += -lcrypt -MISSEY ?= missey -BENT ?= bent +MISSEY = missey +BENT = bent all: $(MISSEY) $(BENT) $(MISSEY): $(OBJS_M) - $(CC) $(CFLAGS) -o $(MISSEY) $(OBJS_M) $(LDFLAGS) + $(CC) ${CFLAGS} -o $(MISSEY) $(OBJS_M) $(LDFLAGS) $(BENT): $(OBJS_B) - $(CC) $(CFLAGS) ${PTHREAD_CFLAGS} -o $(BENT) $(SRCS_B) ${PTHREAD_LIBS} + $(CC) ${CFLAGS} ${PTHREAD_CFLAGS} -o $(BENT) $(SRCS_B) ${PTHREAD_LIBS} install: @${MKDIR} -p $(PREFIX)/etc/missey/ ${INSTALL_DATA} $(WRKSRC)/pop3d.conf $(PREFIX)/etc/missey/pop3d.conf-dist ${INSTALL_PROGRAM} $(WRKSRC)/$(MISSEY) $(PREFIX)/sbin/$(MISSEY) ${INSTALL_PROGRAM} $(WRKSRC)/$(BENT) $(PREFIX)/sbin/$(BENT) -clean : - rm -f *.o *.core core.* *~ *.s missey bent - |