mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
441c99cbf0
Submitted by: FUJISHIMA Satsuki <k5@cheerful.com>
52 lines
1.4 KiB
Makefile
52 lines
1.4 KiB
Makefile
# New ports collection makefile for: GOGO-no-coda
|
|
# Date created: 01 July 1999
|
|
# Whom: Yukihiro Nakai <Nacai@iname.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gogo
|
|
PORTVERSION= 2.35
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://homepage1.nifty.com/herumi/soft/gogo2/src/
|
|
DISTNAME= gogo235
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= nakai@FreeBSD.org
|
|
|
|
# More than version 0.98
|
|
BUILD_DEPENDS= nasm-0.98:${PORTSDIR}/devel/nasm
|
|
|
|
USE_GMAKE= yes
|
|
ALL_TARGET= gogo
|
|
|
|
RESTRICTED= Condition is not clear
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
# A sample of heavily optimized CFLAGS(typically used with pgcc).
|
|
# Recommended ONLY for benchmarks.
|
|
# CFLAGS=-march=pentiumpro -O6 -finline-functions -fomit-frame-pointer -funroll-loops -fexpensive-optimizations -foptimize-register-move -ffast-math -fdefer-pop -mfancy-math-387
|
|
|
|
pre-fetch:
|
|
.if !defined(WITH_THREADS)
|
|
@${ECHO_MSG} "set WITH_THREADS to compile with linuxthreads."
|
|
@${ECHO_MSG} "It would increase performance in SMP environment."
|
|
.else
|
|
MAKE_ENV+= "USE_MT=yes"
|
|
LIB_DEPENDS= lthread.2:${PORTSDIR}/devel/linuxthreads
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gogo ${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/contrib/cdda2mp3.bsd \
|
|
${PREFIX}/bin/cdda2mp3.gogo
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/gogo
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/cdda2mp3.txt \
|
|
${PREFIX}/share/doc/gogo/cdda2mp3.gogo.en
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/cdda2mp3.euc \
|
|
${PREFIX}/share/doc/gogo/cdda2mp3.gogo.ja
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|