diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-27 06:48:43 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-06-27 06:48:43 +0000 |
commit | 6b1a4caaa218b947c1693ba77e6d8ab204f22917 (patch) | |
tree | c3c72caeb1be0f53559dd07bae2f22fd8daab64b /mail/squirrelmail-login_notes-plugin | |
parent | e6364b0c856defc2824b5a2671fded375e1b8086 (diff) | |
download | freebsd-ports-6b1a4caaa218b947c1693ba77e6d8ab204f22917.zip |
CATEGORIES is defined in bsd.squirrelmail.mk which is always loaded after .mk inclusion leading to PKGORIGIN not being set when needed.
Nothing requires bsd.squirrelmail to be loaded after bsd.port.pre.mk but the PORTDIR.
Convert "${PORTDIR}/mail" to ${.CURDIR}/.. and remove all the pre.mk/post.mk dancine
Reported by: erwin
Diffstat (limited to 'mail/squirrelmail-login_notes-plugin')
-rw-r--r-- | mail/squirrelmail-login_notes-plugin/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/mail/squirrelmail-login_notes-plugin/Makefile b/mail/squirrelmail-login_notes-plugin/Makefile index 870cb626e276..9a2e3d6ee0a3 100644 --- a/mail/squirrelmail-login_notes-plugin/Makefile +++ b/mail/squirrelmail-login_notes-plugin/Makefile @@ -1,7 +1,4 @@ -# New ports collection makefile for: squirrelmail-login_notes-plugin -# Date created: 10 Feb 2006 -# Whom: Gerrit Beine <gerrit.beine@gmx.de> -# +# Created by: Gerrit Beine <gerrit.beine@gmx.de> # $FreeBSD$ PORTNAME= login_notes @@ -18,6 +15,5 @@ RUN_DEPENDS+= ${SQUIRRELDIR}/plugins/compatibility:${PORTSDIR}/mail/squirrelmail USE_PERL5_RUN= yes -.include <bsd.port.pre.mk> -.include "${PORTSDIR}/mail/squirrelmail/bsd.squirrelmail.mk" -.include <bsd.port.post.mk> +.include "${.CURDIR}/../squirrelmail/bsd.squirrelmail.mk" +.include <bsd.port.mk> |