mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
64e068d25c
Bump PORTREVISION of all dependent ports. Fix the build errors in the few ports that still use the long deprecated, and now obsoleted, cURL options. Thanks to everyone who took the time to look over the patch! Discussed on: -ports
44 lines
945 B
Makefile
44 lines
945 B
Makefile
# New ports collection makefile for: telak
|
|
# Date created: 13 Sep 2005
|
|
# Whom: Emanuel Haupt <ehaupt@critical.ch>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= telak
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://julien.danjou.info/telak/ \
|
|
http://critical.ch/distfiles/ \
|
|
http://energy.critical.ch/distfiles/
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= A tool to draw pictures on your root window
|
|
|
|
LIB_DEPENDS= curl.4:${PORTSDIR}/ftp/curl \
|
|
gcrypt.13:${PORTSDIR}/security/libgcrypt \
|
|
Imlib2.3:${PORTSDIR}/graphics/imlib2
|
|
|
|
USE_GMAKE= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GETOPT_LONG=yes
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
MAKE_ENV= CC="${CC}" LDFLAGS="${LDFLAGS}"
|
|
|
|
PLIST_FILES= bin/telak
|
|
MAN1= telak.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
install-user:
|
|
@${SH} ${FILESDIR}/install-user
|
|
|
|
.include <bsd.port.mk>
|