mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
67 lines
1.7 KiB
Makefile
67 lines
1.7 KiB
Makefile
# New ports collection makefile for: clementine
|
|
# Date created: 2002-03-13
|
|
# Whom: trevor
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= clementine
|
|
PORTVERSION= 0.0.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= x11-wm
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Has title bars, iconizing, and styles (unstable)
|
|
|
|
RUN_DEPENDS= xv:${PORTSDIR}/graphics/xv \
|
|
rxvt:${PORTSDIR}/x11/rxvt
|
|
|
|
PLIST= ${WRKDIR}/pkg-plist
|
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
|
USE_GMAKE= yes
|
|
USE_XORG= x11
|
|
DOCS= COPYING HISTORY LICENSE
|
|
REINPLACE_ARGS= -i'' -E
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's:^CFLAGS:IGNORE:g ; s:^DEFINES:IGNORE:g ;\
|
|
s:/usr/X11R6:${LOCALBASE}:g' \
|
|
${WRKSRC}/Makefile
|
|
${REINPLACE_CMD} 's:./clementine:${PREFIX}/bin/clementine:g' \
|
|
${WRKSRC}/windowmanager.cpp
|
|
|
|
pre-install:
|
|
${ECHO_CMD} bin/clementine > ${PLIST}
|
|
for i in `${LS} ${WRKSRC} | ${GREP} look-`; do \
|
|
${ECHO_CMD} share/clementine/$$i >> ${PLIST}; \
|
|
done
|
|
${ECHO_CMD} share/clementine/keys >> ${PLIST}
|
|
.if !defined(NOPORTDOCS)
|
|
.for i in ${DOCS}
|
|
${ECHO_CMD} share/doc/clementine/${i} >> ${PLIST}
|
|
.endfor
|
|
${ECHO_CMD} @dirrm share/doc/clementine >> ${PLIST}
|
|
.endif
|
|
${ECHO_CMD} @dirrm share/clementine >> ${PLIST}
|
|
${ECHO_CMD} "*" > ${PKGMESSAGE}
|
|
${ECHO_CMD} "* To customize clementine, copy the keys file to ~/keys and" >> ${PKGMESSAGE}
|
|
${ECHO_CMD} "* copy one of the look- files to ~/look; edit them as needed." >> ${PKGMESSAGE}
|
|
${ECHO_CMD} "*" >> ${PKGMESSAGE}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/clementine ${PREFIX}/bin
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/keys ${WRKSRC}/look-* ${DATADIR}
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|