689ba823b5
found. Therefor update MASTER_SITES and remove WWW. While I'm at it, rebuild the tarball with only the essential contents (ie. remove linux binaries), name it smarter (mp-current.tgz -> mp-player-0.6.tar.gz) and modernize the Makefile. No changes to the source code were made.
33 lines
721 B
Makefile
33 lines
721 B
Makefile
# New ports collection makefile for: mp-player
|
|
# Date created: 26 Aug 2005
|
|
# Whom: Emanuel Haupt <ehaupt@critical.ch>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mp-player
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= CRITICAL
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= A curses based module tracker using libmikmod
|
|
|
|
LIB_DEPENDS= mikmod.2:${PORTSDIR}/audio/libmikmod
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lmikmod ${PTHREAD_LIBS} -lncurses -lpanel
|
|
DEFINES= -D_REENTRANT
|
|
|
|
PLIST_FILES= bin/mp-player
|
|
|
|
do-build:
|
|
${CC} ${CFLAGS} ${LDFLAGS} ${DEFINES} ${WRKSRC}/mp.c \
|
|
-o ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|