diff --git a/audio/gramofile/Makefile b/audio/gramofile/Makefile index 41df00cbf532..ce210b99b34a 100644 --- a/audio/gramofile/Makefile +++ b/audio/gramofile/Makefile @@ -1,53 +1,58 @@ PORTNAME= gramofile PORTVERSION= 1.6P PORTREVISION= 15 CATEGORIES= audio MASTER_SITES= http://www.opensourcepartners.nl/~costar/gramofile/ PATCH_SITES= LOCAL/nox/ PATCHFILES= ${PORTNAME}_1.6-7.diff.gz PATCH_DIST_STRIP= -p1 MAINTAINER= ports@FreeBSD.org COMMENT= Audio recording and tick/scratch reduction for e.g. vinyl records WWW= http://www.opensourcepartners.nl/~costar/gramofile/ +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libfftw.so:math/fftw -ALL_TARGET= gramofile USES= alias gmake ncurses perl5 USE_CSTD= gnu89 + MAKE_ARGS= CC="${CC}" \ CXX="${CXX}" \ PERLCOREDIR=${PERLCOREDIR} +ALL_TARGET= gramofile + CFLAGS+= -D_WANT_SEMUN PERLCOREDIR= ${LOCALBASE}/lib/perl5/${PERL_VER}/${PERL_ARCH}/CORE OPTIONS_DEFINE= DOCS post-patch: ${RM} ${WRKSRC}/debian/20-warning-fixes.dpatch for i in ${WRKSRC}/debian/*.dpatch; do \ ${PATCH} -d ${WRKSRC} `${SED} -n '/^#PATCHOPTIONS:/{s///;p;q;}' $$i` --forward --quiet <$$i ;\ done for i in `${LS} ${FILESDIR}/post-patch-* |${SED} /.orig$$/d`; do \ ${PATCH} -d ${WRKSRC} --forward --quiet <$$i ;\ done ${REINPLACE_CMD} -e "s@-lncurses@-L${LOCALBASE}/lib -lncurses@g" \ -e "s|CFLAGS =|CFLAGS +=|" \ ${WRKSRC}/bplaysrc/Makefile ${REINPLACE_CMD} -e 's,machine/soundcard.h,sys/soundcard.h,' \ ${WRKSRC}/bplaysrc/bplay.c \ ${WRKSRC}/bplaysrc/sndfunc.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/gramofile ${WRKSRC}/bplay_gramo \ ${STAGEDIR}${PREFIX}/bin ${LN} -s bplay_gramo ${STAGEDIR}${PREFIX}/bin/brec_gramo do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} .include diff --git a/audio/gramofile/files/post-patch-bplay.c b/audio/gramofile/files/post-patch-bplay.c deleted file mode 100644 index 04a41df49ab3..000000000000 --- a/audio/gramofile/files/post-patch-bplay.c +++ /dev/null @@ -1,32 +0,0 @@ -Index: bplaysrc/bplay.c -@@ -33,23 +33,30 @@ - /* Needed for BYTE_ORDER and BIG/LITTLE_ENDIAN macros. */ - #ifndef _BSD_SOURCE - # define _BSD_SOURCE --# include -+# include - # undef _BSD_SOURCE - #else - # include - #endif - - #include -+#ifndef __FreeBSD__ - #include -+#endif - - /* Adapted from the byteorder macros in the Linux kernel. */ - #if BYTE_ORDER == LITTLE_ENDIAN - #define cpu_to_le32(x) (x) - #define cpu_to_le16(x) (x) - #else -+#ifdef __FreeBSD__ -+#define cpu_to_le32(x) bswap32((x)) -+#define cpu_to_le16(x) bswap16((x)) -+#else - #define cpu_to_le32(x) bswap_32((x)) - #define cpu_to_le16(x) bswap_16((x)) -+#endif - #endif - - #define le32_to_cpu(x) cpu_to_le32((x))