forked from Lainports/freebsd-ports
- 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
29 lines
706 B
Makefile
29 lines
706 B
Makefile
# Created by: Alexey Dokuchaev <danfe@regency.nsu.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmwork
|
|
PORTVERSION= 0.2.5
|
|
PORTREVISION= 3
|
|
CATEGORIES= misc windowmaker afterstep
|
|
MASTER_SITES= http://people.debian.org/~godisch/wmwork/ \
|
|
LOCAL/xride
|
|
|
|
MAINTAINER= xride@FreeBSD.org
|
|
COMMENT= Dockapp that keeps track of time you have spent on something
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
|
|
|
|
USE_XORG= xpm
|
|
USES= gmake
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/wmwork man/man1/wmwork.1.gz
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wmwork ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/wmwork.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|