1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00
freebsd-ports/misc/crosspad/Makefile
Eitan Adler fd37d8821f Cleanup unmaintained ports in the misc category:
- Trim Header
	- Convert to OptionsNG
	- Prefer DISTNAME to DISTFILES
	- Reorder variables
	- Fix comments (don't include leading article)
	- @unexec rm must not cause failure
	- Tabs, not spaces
	- Single space for WWW
	- Pet portlint
	- etc.

In a few cases the option DOCS was used to control installation into EXAMPLEDIR.
I opted to keep the existing logic of the port in these cases.

Reviewed by:	koobs, ashish
2013-03-25 04:30:31 +00:00

31 lines
646 B
Makefile

# Created by: itojun@itojun.org
# $FreeBSD$
PORTNAME= crosspad
PORTVERSION= 19991202
CATEGORIES= misc
MASTER_SITES= ftp://ftp.itojun.org/pub/misc/
MAINTAINER= ports@FreeBSD.org
COMMENT= Crosspad data downloader/converter
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/crosspad/build
MAN1= crosspad2ps.1 crosspad2eps.1 crosspad2tgif.1 crosspad2idraw.1 \
padload.1
DOCS= PROTOCOL README.english README.japanese
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${PREFIX}/share/doc/crosspad
for i in $(DOCS); do \
${INSTALL_DATA} ${WRKSRC}/../$$i ${PREFIX}/share/doc/crosspad; \
done
.endif
.include <bsd.port.mk>