- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
35 lines
891 B
Makefile
35 lines
891 B
Makefile
# Created by: Roman Bogorodskiy <bogorodskiy@inbox.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hot-babe
|
|
PORTVERSION= 0.2.2
|
|
PORTREVISION= 8
|
|
CATEGORIES= deskutils
|
|
MASTER_SITES= http://dindinx.net/hotbabe/downloads/ \
|
|
LOCAL/novel
|
|
|
|
MAINTAINER= novel@FreeBSD.org
|
|
COMMENT= Small utility which displays the system activity in a special way
|
|
|
|
USES= pkgconfig tar:bzip2
|
|
MAKE_ARGS+= PREFIX="${PREFIX}" CC="${CC}"
|
|
USE_GNOME= gtk20
|
|
|
|
PORTDOCS= ChangeLog NEWS TODO LICENSE CONTRIBUTORS copyright config.example
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
pre-everything::
|
|
@${ECHO_MSG}
|
|
@${ECHO_MSG} "Warning! This port contains some adults only content."
|
|
@${ECHO_MSG} "You might hit Ctrl-C to abort."
|
|
@${ECHO_MSG}
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/hot-babe.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|