mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
60d1a83c2a
- 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
43 lines
874 B
Makefile
43 lines
874 B
Makefile
# Created by: Hendrik Scholz <hendrik@scholz.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fbdesk
|
|
PORTVERSION= 1.4.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= x11
|
|
MASTER_SITES= http://fluxbox.sourceforge.net/download/ \
|
|
GENTOO
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Fluxbox utility to create and manage icons on the desktop
|
|
|
|
LICENSE= MIT
|
|
|
|
LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png
|
|
|
|
OPTIONS_DEFINE= IMLIB2 DOCS
|
|
OPTIONS_DEFAULT= IMLIB2
|
|
|
|
USE_XORG= xext xft xpm xrender
|
|
USES= pkgconfig
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= ChangeLog INSTALL README
|
|
PLIST_FILES= bin/fbdesk
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MIMLIB2}
|
|
LIB_DEPENDS+= libImlib2.so:${PORTSDIR}/graphics/imlib2
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-imlib2
|
|
.endif
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|