diff options
author | ahze <ahze@FreeBSD.org> | 2005-01-30 04:42:04 +0000 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2005-01-30 04:42:04 +0000 |
commit | 85b46b49cf1e04b86938607d7baee4964339bb56 (patch) | |
tree | 89112b1276d7ee6b93a13f183d2b13eff06e77a0 /audio/grip | |
parent | 296d178b46ed26d22a5e9a53f6b95eac420a0115 (diff) | |
download | FreeBSD-ports-85b46b49cf1e04b86938607d7baee4964339bb56.zip FreeBSD-ports-85b46b49cf1e04b86938607d7baee4964339bb56.tar.gz |
- 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
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 620cc1f..7b600a8 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 |