Fix editors/ee:

Add a reachable HOMEPAGE, use PKGNAME to fix the package name, mirror the
source myself, take MAINTAINER, have the do-install routine use
${INSTALL_PROGRAM} instead of ${INSTALL} (thanks to sthen@ for catching
this last one).
ok kirby@ sthen@
This commit is contained in:
bcallah 2013-05-17 13:13:51 +00:00
parent ce51384f92
commit 40d0623638

View File

@ -1,19 +1,22 @@
# $OpenBSD: Makefile,v 1.12 2013/03/11 11:02:49 espie Exp $
# $OpenBSD: Makefile,v 1.13 2013/05/17 13:13:51 bcallah Exp $
COMMENT= easy to use text editor
VERSION= 1.5.2
DISTNAME= ee-${VERSION}.src
PKGNAME= ee-${VERSION}
EPOCH= 0
CATEGORIES= editors
HOMEPAGE= http://mahon.cwx.net/
HOMEPAGE= http://www.users.uswest.net/~hmahon/
MAINTAINER= Brian Callahan <bcallah@openbsd.org>
# BSD-like
PERMIT_PACKAGE_CDROM= Yes
WANTLIB= c
MASTER_SITES= ${HOMEPAGE}sources/
MASTER_SITES= http://devio.us/~bcallah/source/
EXTRACT_SUFX= .tgz
WRKDIST= ${WRKDIR}/easyedit-${VERSION}
@ -24,7 +27,7 @@ NO_TEST= Yes
do-install:
@perl -i -pe 's:%%SYSCONFDIR%%:${SYSCONFDIR}:g' ${WRKSRC}/ee.1
${INSTALL} ${WRKDIST}/ee ${PREFIX}/bin/ee
${INSTALL_PROGRAM} ${WRKDIST}/ee ${PREFIX}/bin/ee
${INSTALL_DATA} ${WRKDIST}/ee.1 ${PREFIX}/man/man1/ee.1
.include <bsd.port.mk>