ba77d9c1c5
- Update MASTER_SITES, pkg-descr and WWW line [1] - Give maintainership to submitter [1] - Support NOPORTDOCS [2] PR: ports/173411 [1] PR: ports/172038 [2] Submitted by: nemysis <nemysis@gmx.ch> [1], KATO Tsuguru <tkato432@yahoo.com> [2] Feature safe: yes
28 lines
624 B
Makefile
28 lines
624 B
Makefile
# Created by: Christopher Key <cjk32@cam.ac.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dvdid
|
|
PORTVERSION= 0.2.0a
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://dvdid.cjkey.org.uk/
|
|
|
|
MAINTAINER= nemysis@gmx.ch
|
|
COMMENT= Tool for calculating dvdids
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS/s|doc||' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC}/doc && ${INSTALL_DATA} dvdid.tag ${DOCSDIR}
|
|
@${MKDIR} ${DOCSDIR}/html/api
|
|
cd ${WRKSRC}/doc/html/api && ${INSTALL_DATA} * ${DOCSDIR}/html/api
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|