mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
33 lines
834 B
Makefile
33 lines
834 B
Makefile
# New ports collection makefile for: ringtonetools
|
|
# Date created: 7 June 2002
|
|
# Whom: Michael A. Kohn <mike@mikekohn.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ringtonetools
|
|
PORTVERSION= 2.25
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://downloads.mikekohn.net/${PORTNAME}/
|
|
|
|
MAINTAINER= mike@mikekohn.net
|
|
COMMENT= Create/Convert/Listen to ringtones and logos for mobile phones
|
|
|
|
RESTRICTED= no-commercial-use
|
|
|
|
pre-build:
|
|
@${REINPLACE_CMD} -e 's|^FLAGS|FLAGS?|' ${WRKSRC}/src/Makefile
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/ringtonetools ${PREFIX}/bin
|
|
.for i in face.txt hemglass.mid ionian.rtttl usa.emelody yngwie_trilogy.rtttl
|
|
@${MKDIR} ${DATADIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/samples/${i} ${DATADIR}
|
|
.endfor
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/docs/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|