diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2005-01-30 04:42:04 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2005-01-30 04:42:04 +0000 |
commit | 91bb6d34223aa7e68f457617071cb41a844a3154 (patch) | |
tree | c9bf8a0d337b455b6fb8087866e45d0c9752b7cb /audio/grip | |
parent | 44f5dcfec7d52b0a500c50729afad5d2ba3edd19 (diff) | |
download | ports-91bb6d34223aa7e68f457617071cb41a844a3154.tar.gz ports-91bb6d34223aa7e68f457617071cb41a844a3154.zip |
- Make the default encoder ogg/vorbis if PACKAGE_BUILDING is defined since
lame can't be packaged anymore. Lame is still default if PACKAGE_BUILDING is
not defined.
- Use libtool15
Notes
Notes:
svn path=/head/; revision=127682
Diffstat (limited to 'audio/grip')
-rw-r--r-- | audio/grip/Makefile | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/audio/grip/Makefile b/audio/grip/Makefile index 620cc1fcabc9..7b600a8b9462 100644 --- a/audio/grip/Makefile +++ b/audio/grip/Makefile @@ -22,20 +22,25 @@ PATCH_DEPENDS= iconv:${PORTSDIR}/converters/libiconv USE_X_PREFIX= yes USE_GNOME= gnomehack gnomeprefix gnometarget libgnomeui vte USE_GMAKE= yes -USE_LIBTOOL_VER= 13 +USE_LIBTOOL_VER= 15 USE_REINPLACE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" OPTIONS= CDPARANOIA "Ripper: Enable cdparanoia support" on \ - CDDA2WAV "Ripper: cdda2wav: Install sysutils/cdrtools" off \ - LAME "Encoder: lame: Install audio/lame" on \ - BLADEENC "Encoder: bladeenc: Install audio/bladeenc" off \ + CDDA2WAV "Ripper: cdda2wav: Install sysutils/cdrtools" off +.if defined(PACKAGE_BUILDING) +OPTIONS+= LAME "Encoder: lame: Install audio/lame" off \ + VORBIS "Encoder: oggenc: Install audio/vorbis-tools" on +.else +OPTIONS+= LAME "Encoder: lame: Install audio/lame" on \ + VORBIS "Encoder: oggenc: Install audio/vorbis-tools" off +.endif +OPTIONS+= BLADEENC "Encoder: bladeenc: Install audio/bladeenc" off \ FAAC "Encoder: faac: Install audio/faac" off \ FLAC "Encoder: flac: Install audio/flac" off \ GOGO "Encoder: gogo: Install audio/gogo" off \ - MP3ENCODE "Encoder: mp3encode: Install audio/mp3encode" off \ - VORBIS "Encoder: oggenc: Install audio/vorbis-tools" off + MP3ENCODE "Encoder: mp3encode: Install audio/mp3encode" off ISO_LOCALES= de es fr pt_BR ru |