diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-09-25 12:21:43 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-09-25 12:21:43 +0000 |
commit | 5e5841f2cd18d6e51ddddeb117432410a7d22614 (patch) | |
tree | ff3848099747774e69f3bda4d04dd29927deb93b /mail | |
parent | 016268dfb5cf0e82b8cf522bc11c60b30fb57175 (diff) | |
download | ports-5e5841f2cd18d6e51ddddeb117432410a7d22614.tar.gz ports-5e5841f2cd18d6e51ddddeb117432410a7d22614.zip |
Eliminate WRKSRC=${WRKDIR}/${PKGNAME} lines, as these will break when
PORTREVISION or PORTEPOCH are defined.
Most of these Makefiles were defining DISTNAME and WRKSRC (and
sometimes EXTRACT_SUFX) -- change those to define DISTFILES only.
Also, some of the WRKSRC lines were not even necessary, as they were
defining it to the default value.
Instigated by: Peter Pentchev <roam@orbitel.bg> and kris
Notes
Notes:
svn path=/head/; revision=33101
Diffstat (limited to 'mail')
-rw-r--r-- | mail/junkfilter/Makefile | 1 | ||||
-rw-r--r-- | mail/wmpop3/Makefile | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/mail/junkfilter/Makefile b/mail/junkfilter/Makefile index 8dbd66ce7c1b..828520623263 100644 --- a/mail/junkfilter/Makefile +++ b/mail/junkfilter/Makefile @@ -17,7 +17,6 @@ MAINTAINER= gsutter@zer0.org RUN_DEPENDS= procmail:${PORTSDIR}/mail/procmail -WRKSRC= ${WRKDIR}/${PKGNAME} NO_BUILD= yes BINDIR= ${PREFIX}/etc/${PORTNAME} diff --git a/mail/wmpop3/Makefile b/mail/wmpop3/Makefile index 0b65a15328e1..314da837ebc5 100644 --- a/mail/wmpop3/Makefile +++ b/mail/wmpop3/Makefile @@ -9,11 +9,11 @@ PORTNAME= wmpop3 PORTVERSION= 0.5.6a CATEGORIES= mail windowmaker MASTER_SITES= http://www.cs.mun.ca/~scotth/download/ -DISTNAME= WMPop3-${PORTVERSION} +DISTFILES= WMPop3-${PORTVERSION}.tar.gz MAINTAINER= jim@FreeBSD.org -WRKSRC= ${WRKDIR}/${PKGNAME}/wmpop3 +WRKSRC= ${WRKDIR}/${DISTNAME}/wmpop3 USE_X_PREFIX= yes USE_XPM= yes |