mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
5e5841f2cd
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
36 lines
1015 B
Makefile
36 lines
1015 B
Makefile
# New ports collection makefile for: wmpop3
|
|
# Date created: 28 Mar 1999
|
|
# Whom: Jim Mock <jim@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wmpop3
|
|
PORTVERSION= 0.5.6a
|
|
CATEGORIES= mail windowmaker
|
|
MASTER_SITES= http://www.cs.mun.ca/~scotth/download/
|
|
DISTFILES= WMPop3-${PORTVERSION}.tar.gz
|
|
|
|
MAINTAINER= jim@FreeBSD.org
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/wmpop3
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_XPM= yes
|
|
ALL_TARGET= clean all
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wmpop3 ${PREFIX}/bin
|
|
@${ECHO} "===> Installing wmpop3rc in ${PREFIX}/share/examples/wmpop3"
|
|
@${ECHO} "===> Modify to your config and copy to ~/.wmpop3rc"
|
|
@${MKDIR} ${PREFIX}/share/examples/wmpop3
|
|
${INSTALL_DATA} ${WRKSRC}/wmpop3rc ${PREFIX}/share/examples/wmpop3
|
|
.if !defined(NOPORTDOCS)
|
|
@${ECHO} "===> Installing README in ${PREFIX}/share/doc/wmpop3"
|
|
@${ECHO} "===> Please read it for usage instructions"
|
|
@${MKDIR} ${PREFIX}/share/doc/wmpop3
|
|
${INSTALL_DATA} ${WRKDIR}/${PKGNAME}/README ${PREFIX}/share/doc/wmpop3
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|