mirror of
https://git.freebsd.org/ports.git
synced 2025-06-02 03:16:28 -04:00
Update to 2.0pre4
This commit is contained in:
parent
9b513ad584
commit
a4d68e48d7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=26628
6 changed files with 42 additions and 59 deletions
|
@ -1,13 +1,13 @@
|
|||
# New ports collection makefile for: cmp3
|
||||
# Version required: 2.0pre3
|
||||
# Version required: 2.0pre4
|
||||
# Date created: 10 April 1999
|
||||
# Whom: Chris Piazza <cpiazza@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
DISTNAME= cmp3-2.0pre3
|
||||
PKGNAME= cmp3-2.0p3
|
||||
DISTNAME= cmp3-2.0pre4
|
||||
PKGNAME= cmp3-2.0p4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= http://www.personal.psu.edu/users/n/k/nkk104/cmp3/
|
||||
|
||||
|
@ -20,16 +20,4 @@ USE_GMAKE= yes
|
|||
WRKSRC= ${WRKDIR}/cmp3
|
||||
PKGMESSAGE= ${WRKSRC}/MESSAGE
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/cmp3 ${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/rnmp3 ${PREFIX}/bin
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${PREFIX}/share/doc/cmp3
|
||||
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/cmp3
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${SED} 's,PREFIX,${PREFIX},' ${PKGDIR}/MESSAGE > ${WRKSRC}/MESSAGE
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
@ -1 +1 @@
|
|||
MD5 (cmp3-2.0pre3.tar.gz) = 028354f2d513dff7019db28bee25d570
|
||||
MD5 (cmp3-2.0pre4.tar.gz) = 8d13ba6fa3e0b7b903b4d5fa122a94ab
|
||||
|
|
|
@ -1,44 +1,35 @@
|
|||
--- Makefile.orig Sat Apr 10 12:40:57 1999
|
||||
+++ Makefile Sat Apr 10 23:26:31 1999
|
||||
@@ -1,7 +1,7 @@
|
||||
--- Makefile.orig Tue Mar 7 14:21:48 2000
|
||||
+++ Makefile Tue Mar 7 14:23:36 2000
|
||||
@@ -3,7 +3,7 @@
|
||||
#
|
||||
# Set these variables
|
||||
initial_directory := "/mp3"
|
||||
mpg123_location := "mpg123"
|
||||
-install_directory := "$(HOME)/bin"
|
||||
+install_directory := "$(PREFIX)/bin"
|
||||
|
||||
#
|
||||
-INIT_DIR="/mp3"
|
||||
+INIT_DIR="$(PREFIX)/share/mp3"
|
||||
MPG123_LOC="mpg123"
|
||||
#INSTALL_DIR=/usr/local/bin
|
||||
INSTALL_DIR=$(HOME)/bin
|
||||
@@ -11,7 +11,7 @@
|
||||
# Location of config file (YOU create this file by yourself, see README)
|
||||
@@ -15,7 +15,7 @@
|
||||
#
|
||||
|
||||
## An ass repository is a nice thing to have. See README
|
||||
-ASSREPOSITORY="$(HOME)/.cmp3ass"
|
||||
+#ASSREPOSITORY="$(HOME)/.cmp3ass"
|
||||
-ass_repository := "$(HOME)/.cmp3ass"
|
||||
+#ass_repository := "$(HOME)/.cmp3ass"
|
||||
|
||||
## Define this for bufferring or add other parameters to mpg123
|
||||
#EXEC_PARAMS=-DEXEC_PARAMS="\"-b\",\"320\""
|
||||
@@ -30,8 +30,9 @@
|
||||
mpg123_params := -b 320
|
||||
@@ -34,8 +34,8 @@
|
||||
# stands. Change the code to do something else you want it to do...
|
||||
#PARAMS +=-DMY_CD
|
||||
LIBS= -lncurses
|
||||
-CFLAGS= -Wall -O2 -g
|
||||
-CFLAGS= -Wall -g -O2
|
||||
-CC= gcc
|
||||
+CFLAGS?= -O2
|
||||
+CFLAGS+= -Wall
|
||||
+CC?= gcc
|
||||
OBJS= llist.o cmp3fileio.o cmp3manager.o cmp3curses.o cmp3llist.o \
|
||||
cmp3main.o cmp3listfiles.o cmp3playlist.o
|
||||
OBJS= llist.o cmp3common.o cmp3fileio.o cmp3manager.o cmp3curses.o \
|
||||
cmp3llist.o cmp3main.o cmp3listfiles.o cmp3playlist.o cmp3volume.o \
|
||||
cmp3general.o
|
||||
@@ -91,4 +91,4 @@
|
||||
|
||||
@@ -43,7 +44,6 @@
|
||||
endif
|
||||
|
||||
all: rnmp3 cmp3
|
||||
- @echo -e "\n\nCmp3 is ready! Please read the README before proceeding.\n"
|
||||
|
||||
clean:
|
||||
rm -f *.o *~ DEADJOE core cmp3 rnmp3
|
||||
@@ -75,4 +75,4 @@
|
||||
fi;
|
||||
endif
|
||||
include .depend
|
||||
|
||||
|
|
|
@ -1,20 +1,11 @@
|
|||
--- cmp3.h.orig Sat Apr 10 21:49:16 1999
|
||||
+++ cmp3.h Sat Apr 10 21:54:51 1999
|
||||
--- cmp3.h.orig Tue Mar 7 14:25:06 2000
|
||||
+++ cmp3.h Tue Mar 7 14:25:12 2000
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef _CMP3_H
|
||||
#define _CMP3_H
|
||||
|
||||
-#include<curses.h>
|
||||
+#include<ncurses.h>
|
||||
+#include <ncurses.h>
|
||||
|
||||
#ifndef NCURSES_VERSION
|
||||
#error "This program requires ncurses to function"
|
||||
@@ -15,7 +15,7 @@
|
||||
#include<sys/wait.h>
|
||||
#include<sys/ioctl.h>
|
||||
#include<sys/stat.h>
|
||||
-#include<sys/soundcard.h>
|
||||
+#include<machine/soundcard.h>
|
||||
#include<fcntl.h>
|
||||
#include<stdio.h>
|
||||
#include<stdlib.h>
|
||||
|
|
15
audio/cmp3/files/patch-ad
Normal file
15
audio/cmp3/files/patch-ad
Normal file
|
@ -0,0 +1,15 @@
|
|||
--- cmp3volume.c.orig Tue Mar 7 14:26:13 2000
|
||||
+++ cmp3volume.c Tue Mar 7 14:26:22 2000
|
||||
@@ -3,7 +3,7 @@
|
||||
*/
|
||||
|
||||
#include "cmp3funcs.h"
|
||||
-#include<sys/soundcard.h>
|
||||
+#include <machine/soundcard.h>
|
||||
|
||||
static int mixernum, /* ID number for the mixer */
|
||||
vol; /* Current volume level */
|
||||
@@ -89,4 +89,4 @@
|
||||
return;
|
||||
}
|
||||
|
|
@ -1,4 +1,2 @@
|
|||
bin/cmp3
|
||||
bin/rnmp3
|
||||
share/doc/cmp3/README
|
||||
@dirrm share/doc/cmp3
|
||||
|
|
Loading…
Add table
Reference in a new issue