diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2003-07-14 02:53:03 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2003-07-14 02:53:03 +0000 |
commit | b185046be2ec03555daaf4f26d38542c403a9955 (patch) | |
tree | 0274ce607614533de66837fc1f70d4c35770d9e1 /audio/osalp | |
parent | 88d002074007544d532f2495aeb93729291e6275 (diff) |
get rid of libgnugetopt dependency for -CURRENT,
use USE_GETOPT_LONG instead.
Notes
Notes:
svn path=/head/; revision=84842
Diffstat (limited to 'audio/osalp')
-rw-r--r-- | audio/osalp/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/audio/osalp/Makefile b/audio/osalp/Makefile index eb4a982f008c..ee651b0e4a49 100644 --- a/audio/osalp/Makefile +++ b/audio/osalp/Makefile @@ -8,6 +8,7 @@ PORTNAME= osalp PORTVERSION= 0.7.3 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -17,14 +18,15 @@ COMMENT= Open Source Audio Library Project BUILD_DEPENDS= lame:${PORTSDIR}/audio/lame \ mpg123:${PORTSDIR}/audio/mpg123 -LIB_DEPENDS= vorbis.2:${PORTSDIR}/audio/libvorbis \ - gnugetopt.1:${PORTSDIR}/devel/libgnugetopt +LIB_DEPENDS= vorbis.2:${PORTSDIR}/audio/libvorbis RUN_DEPENDS= ${BUILD_DEPENDS} +USE_GETOPT_LONG=yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt" +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --enable-all INSTALLS_SHLIB= yes |