mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
2c672a4de9
While here, make sure gtk-update-icon-cache is only on run dependency where added as a dependency Enforce gtk3 to depend on gtk-update-icon-cache (previously it was inheriting the dependency)
68 lines
1.8 KiB
Makefile
68 lines
1.8 KiB
Makefile
# Created by: kbyanc@posi.net
|
|
|
|
PORTNAME= grip
|
|
DISTVERSION= 4.2.2
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/grip/${DISTVERSION}
|
|
|
|
MAINTAINER= freebsd-ports@jan0sch.de
|
|
COMMENT= GTK front-end to external cd rippers and audio encoders
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libid3.so:audio/id3lib
|
|
|
|
USES= compiler:c++11-lang gmake gnome libtool localbase pathfix \
|
|
pkgconfig xorg
|
|
USE_GNOME= cairo gdkpixbuf2 gtk20
|
|
USE_XORG= ice sm x11 xext
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-werror
|
|
|
|
OPTIONS_DEFINE= CDDA2WAV CDPARANOIA FAAC FLAC LAME NLS VORBIS
|
|
OPTIONS_DEFAULT= CDPARANOIA FLAC VORBIS
|
|
|
|
.if !defined(PACKAGE_BUILDING)
|
|
OPTIONS_DEFAULT+= LAME
|
|
.endif
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
CDDA2WAV_RUN_DEPENDS= cdda2wav:sysutils/cdrtools
|
|
CDPARANOIA_LIB_DEPENDS= libcdda_paranoia.so:audio/cdparanoia
|
|
CDPARANOIA_CONFIGURE_ENABLE= cdpar
|
|
FAAC_RUN_DEPENDS= faac:audio/faac
|
|
FLAC_RUN_DEPENDS= flac:audio/flac
|
|
LAME_RUN_DEPENDS= lame:audio/lame
|
|
VORBIS_RUN_DEPENDS= ogg123:audio/vorbis-tools
|
|
NLS_USES= gettext
|
|
|
|
.if defined(WITH_CDROM_DEVICE)
|
|
DEFAULT_CDROM_DEVICE= ${WITH_CDROM_DEVICE}
|
|
.else
|
|
DEFAULT_CDROM_DEVICE= /dev/cd0
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-everything::
|
|
.if !defined(WITH_CDROM_DEVICE)
|
|
@${ECHO_MSG} "===> The default CDROM device is ${DEFAULT_CDROM_DEVICE}"
|
|
@${ECHO_MSG} "===> Define WITH_CDROM_DEVICE if you want to change the default"
|
|
@${ECHO_MSG} "===> For example, 'make WITH_CDROM_DEVICE=\"/dev/somedevice\"'"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/dev/cdrom|${DEFAULT_CDROM_DEVICE}|' \
|
|
${WRKSRC}/src/grip.c
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc && ${COMPILER_VERSION} <= 42
|
|
${REINPLACE_CMD} -e '/pragma/d' ${WRKSRC}/src/cdpar.c
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|