mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
3ce0f21808
- Convert to USES=libtool and bump dependent ports - Add INSTALL_TARGET=install-strip - Remove patches that renamed include directories and libraries so they didn't conflict with early development versions of glib/gtk 2.0
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# Created by: Patrick Li <pat@databits.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmcube
|
|
PORTVERSION= 0.98p2
|
|
PORTREVISION= 6
|
|
CATEGORIES= sysutils windowmaker
|
|
MASTER_SITES= http://www.ne.jp/asahi/linux/timecop/software/
|
|
PKGNAMESUFFIX= -gdk
|
|
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Modified version of the dockapp wmCube
|
|
|
|
LICENSE= GPLv2
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USE_XORG= xpm
|
|
USE_GNOME= gtk12
|
|
MAKEFILE= Makefile.FREEBSD
|
|
SUB_FILES= pkg-message
|
|
NEED_ROOT= yes
|
|
|
|
DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
PORTDOCS= CHANGES README README.GDK TODO
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} -m 2755 -o root -g kmem ${WRKSRC}/wmcube \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}${PKGNAMESUFFIX}
|
|
.for files in *.wmc
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/3dObjects/${files} ${STAGEDIR}${DATADIR}
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|