d5411d9612
All: - The Schily Makefilesystem no longer uses CC= for internal tasks. People who now set $CC to a different value will fail in a similar way as they would fail with other build systems. - Added automatic support for ARMv5 and ARMv6. This makes compilation on the RaspberryPI also possible with the non-automake aware gmake. - Allow "static" compilation (a compilation that does not use the dynamic defines from the Schily Makefilesystem) on Linux ARMv6 (which is used by RaspberryPI). - Allow a "static" compilation (a compilation without using dynamic -I Paths) on Linux on ARMv5 and ARMv6 by adding static #includes for Linux ARM in: include/schily//align.h include/schily//archdefs.h include/schily//avoffset.h include/schily//xconfig.h This is needed if you like to install the schily include files to /usr/include/schily and allow users to "manually" compile programs that use e.g libparanoia. To allow this, the autoconf results need to be installed as: <schily/armv5l-linux-gcc/*.h> and <schily/armv6l-linux-gcc/*.h> - Many sources have been modified to deal __CYGWIN32__ like __CYGWIN__ This is neded as newer Cygwin versions that run in 64 Bit mode do no longer define __CYGWIN32__ but __CYGWIN__ Libmdigest: - Sources have been modified to deal __CYGWIN32__ like __CYGWIN__ This is neded as newer Cygwin versions that run in 64 Bit mode do no longer define __CYGWIN32__ but __CYGWIN__ Libscg: - Sources have been modified to deal __CYGWIN32__ like __CYGWIN__ This is neded as newer Cygwin versions that run in 64 Bit mode do no longer define __CYGWIN32__ but __CYGWIN__ Cdrecord: - Sources have been modified to deal __CYGWIN32__ like __CYGWIN__ This is neded as newer Cygwin versions that run in 64 Bit mode do no longer define __CYGWIN32__ but __CYGWIN__ Cdda2wav (Maintained/enhanced by Jörg Schilling, originated by Heiko Eißfeldt heiko@hexco.de): - Sources have been modified to deal __CYGWIN32__ like __CYGWIN__ This is neded as newer Cygwin versions that run in 64 Bit mode do no longer define __CYGWIN32__ but __CYGWIN__
144 lines
4.8 KiB
Makefile
144 lines
4.8 KiB
Makefile
# $NetBSD: Makefile,v 1.98 2013/08/15 09:12:40 wiz Exp $
|
|
|
|
DISTNAME= cdrtools-3.01a17
|
|
PKGNAME= ${DISTNAME:S/a/alpha/:S/-pre/pre/}
|
|
CATEGORIES= sysutils
|
|
#MASTER_SITES= ftp://ftp.berlios.de/pub/cdrecord/ \
|
|
# http://ftp.berlios.de/pub/cdrecord/
|
|
MASTER_SITES= ftp://ftp.berlios.de/pub/cdrecord/alpha/ \
|
|
http://ftp.berlios.de/pub/cdrecord/alpha/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://cdrecord.berlios.de/old/private/cdrecord.html
|
|
COMMENT= Software for creating ISO9660 images and writing CD/DVD/Blu-ray
|
|
#LICENSE= CDDL.Schily.txt AND gnu-gpl-v2 AND gnu-lgpl-v2.1
|
|
|
|
CONFLICTS= mkisofs-[0-9]* cdrtools-ossdvd-[0-9]* cdrecord-[0-9]* cdrkit-[0-9]*
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:C/a[0-9]*//}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
USE_TOOLS+= gm4 gmake tbl
|
|
|
|
CFLAGS.NetBSD+= -DUSE_GETRAWPARTITION
|
|
LDFLAGS.NetBSD+= -lutil
|
|
|
|
# avoid picking up a bad ${ARCH} during the build
|
|
MAKE_ENV+= ARCH=""
|
|
MAKE_ENV+= MAKEPROG="gmake"
|
|
MAKE_ENV+= COPTX=${CFLAGS:Q}
|
|
MAKE_ENV+= LDOPTX=${LDFLAGS:Q}
|
|
MAKE_ENV+= INS_BASE=${PREFIX:Q}
|
|
MAKE_FLAGS+= GMAKE_NOWARN=true
|
|
# do we want to compile shared libraries?
|
|
# needs changes in the install target and PLIST
|
|
#MAKE_ENV+= LINKMODE=dynamic
|
|
|
|
# Map PKGSRC_COMPILER to CCOM used by cdrtools build system.
|
|
ccmap.gcc= gcc
|
|
MAKE_FLAGS+= CCOM=${ccmap.${PKGSRC_COMPILER}:Ucc}
|
|
|
|
# allow us to override the default /etc/default/cdrecord by patching
|
|
# the documentation appropriately. Additionally, we also provide a
|
|
# MESSAGE stating the reasons we do this, as required by the license.
|
|
CDRECORD_CONF?= ${PKG_SYSCONFDIR}/cdrecord.conf
|
|
|
|
.if ${CDRECORD_CONF} != "/etc/default/cdrecord"
|
|
MESSAGE_SRC+= MESSAGE.cdrecord.conf
|
|
MESSAGE_SUBST+= PKGNAME_NOREV=${PKGNAME_NOREV:Q}
|
|
MESSAGE_SUBST+= CDRECORD_CONF=${CDRECORD_CONF:Q}
|
|
.endif
|
|
|
|
CONF_FILES+= share/examples/cdrtools/cdrecord ${CDRECORD_CONF}
|
|
|
|
INSTALLATION_DIRS= bin lib/siconv ${PKGMANDIR}/man1 ${PKGMANDIR}/man8 \
|
|
share/doc/cdrtools/cdda2wav \
|
|
share/doc/cdrtools/cdrecord \
|
|
share/doc/cdrtools/mkisofs \
|
|
share/examples/cdrtools
|
|
|
|
SUBST_CLASSES+= fix
|
|
SUBST_STAGE.fix= post-patch
|
|
SUBST_FILES.fix= btcflash/btcflash.1
|
|
SUBST_FILES.fix+= cdrecord/cdrecord.1
|
|
SUBST_FILES.fix+= libcdrdeflt/cdrdeflt.c
|
|
SUBST_FILES.fix+= mkisofs/diag/isoinfo.8
|
|
SUBST_FILES.fix+= readcd/readcd.1
|
|
SUBST_SED.fix= -e "s,/etc/default/cdrecord,${CDRECORD_CONF},g"
|
|
SUBST_MESSAGE.fix= Fixing paths.
|
|
|
|
SUBST_CLASSES+= oss
|
|
SUBST_STAGE.oss= post-patch
|
|
SUBST_FILES.oss= cdda2wav/local.cnf.in
|
|
SUBST_SED.oss= -e "s,/dev/dsp,${DEVOSSSOUND},g"
|
|
SUBST_MESSAGE.oss= Fixing OSS sound device path.
|
|
|
|
SUBST_CLASSES+= ins_base
|
|
SUBST_STAGE.ins_base= pre-configure
|
|
SUBST_FILES.ins_base= DEFAULTS/Defaults.*
|
|
SUBST_SED.ins_base= -e "/^INS_BASE=/d"
|
|
SUBST_MESSAGE.ins_base= Fixing INS_BASE.
|
|
|
|
do-configure:
|
|
cd ${WRKSRC}/RULES; \
|
|
for suffix in netbsd-cc.rul netbsd-gcc.rul; do \
|
|
if [ ! -f ${MACHINE}-$$suffix ]; then \
|
|
ln -sf i386-$$suffix ${MACHINE}-$$suffix; \
|
|
fi; \
|
|
done; \
|
|
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} config
|
|
|
|
post-build:
|
|
cd ${WRKSRC}; \
|
|
for manpage in cdda2wav/cdda2wav.1 mkisofs/mkisofs.8; do \
|
|
tbl $${manpage} > $${manpage}.tmp; \
|
|
mv -f $${manpage}.tmp $${manpage}; \
|
|
done
|
|
|
|
do-install:
|
|
for program in btcflash cdda2wav cdrecord mkisofs \
|
|
readcd scgcheck scgskeleton; do \
|
|
cd ${WRKSRC}/$${program}; \
|
|
${INSTALL_PROGRAM} OBJ/*/$${program} \
|
|
${DESTDIR}${PREFIX}/bin; \
|
|
done
|
|
for program in cdda2mp3 cdda2ogg; do \
|
|
${INSTALL_SCRIPT} ${WRKSRC}/cdda2wav/$${program} \
|
|
${DESTDIR}${PREFIX}/bin; \
|
|
${INSTALL_MAN} ${WRKSRC}/cdda2wav/$${program}.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
|
|
done
|
|
for program in btcflash cdda2wav cdrecord \
|
|
readcd scgcheck; do \
|
|
${INSTALL_MAN} ${WRKSRC}/$${program}/$${program}.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1; \
|
|
done
|
|
for program in mkisofs; do \
|
|
${INSTALL_MAN} ${WRKSRC}/$${program}/$${program}.8 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man8; \
|
|
done
|
|
cd ${WRKSRC}/mkisofs/diag; \
|
|
for f in devdump isodebug isodump isoinfo isovfy; do \
|
|
${INSTALL_PROGRAM} OBJ/*/$$f ${DESTDIR}${PREFIX}/bin; \
|
|
${INSTALL_MAN} $$f.8 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/$$f.8; \
|
|
done
|
|
${INSTALL_DATA} ${WRKSRC}/libsiconv/tables/[cik]* \
|
|
${DESTDIR}${PREFIX}/lib/siconv
|
|
${RM} ${DESTDIR}${PREFIX}/lib/siconv/*mk
|
|
${INSTALL_DATA} ${WRKSRC}/cdda2wav/README* \
|
|
${DESTDIR}${PREFIX}/share/doc/cdrtools/cdda2wav
|
|
${INSTALL_DATA} ${WRKSRC}/cdrecord/README* \
|
|
${DESTDIR}${PREFIX}/share/doc/cdrtools/cdrecord
|
|
${INSTALL_DATA} ${WRKSRC}/mkisofs/README* \
|
|
${DESTDIR}${PREFIX}/share/doc/cdrtools/mkisofs
|
|
${INSTALL_DATA} ${WRKSRC}/cdrecord/cdrecord.dfl \
|
|
${DESTDIR}${PREFIX}/share/examples/cdrtools/cdrecord
|
|
|
|
.include "../../mk/oss.buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|