77f8276a88
- Use the version tag instead of commit hash when they're the same. - Remove unnneeded variables. - Simplify go- ports when possible. - Various fixes. Sponsored by: Absolight
35 lines
814 B
Makefile
35 lines
814 B
Makefile
# Created by: Alexey Mikhailov <karma@ez.pereslavl.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= trayer
|
|
PORTVERSION= 1.1.6
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= madpilot@FreeBSD.org
|
|
COMMENT= Lightweight GTK2-based systray for UNIX desktop
|
|
|
|
USE_GNOME= gtk20 glib20 pango atk
|
|
USE_GITHUB= yes
|
|
USES= iconv gmake pkgconfig
|
|
USE_XORG= xmu
|
|
MAKE_ARGS= "PREFIX=${PREFIX}"
|
|
|
|
GH_ACCOUNT= sargon
|
|
GH_PROJECT= ${PORTNAME}-srg
|
|
|
|
PORTDOCS= README CREDITS CHANGELOG
|
|
|
|
PLIST_FILES= bin/trayer man/man1/trayer.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|$$(PREFIX)/|$$(DESTDIR)&|' ${WRKSRC}/Makefile
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|