diff options
author | motoyuki <motoyuki@FreeBSD.org> | 2000-06-30 23:43:39 +0800 |
---|---|---|
committer | motoyuki <motoyuki@FreeBSD.org> | 2000-06-30 23:43:39 +0800 |
commit | c883843b5562f4eab296227072d5f5caceb5f4ee (patch) | |
tree | bd3139b88d821e6663db1de8dc9a5dd10905c4ee /audio/cdrdao/Makefile | |
parent | 1b6cc6e8d660df3b740f433cbc3edba444d08c60 (diff) | |
download | freebsd-ports-gnome-c883843b5562f4eab296227072d5f5caceb5f4ee.tar.gz freebsd-ports-gnome-c883843b5562f4eab296227072d5f5caceb5f4ee.tar.zst freebsd-ports-gnome-c883843b5562f4eab296227072d5f5caceb5f4ee.zip |
o Turn off the build of xcdrdao:
Xcdrdao cannot build with GTK-- 1.2.0 bacause of the incompatibility
of GTK--. If GTK-- is installed, cdrdao port always tries to build
xcdrdao, and fails.
o Support 5-current.
o Do not use posix-threads by default due to thread scheduling problem.
o Change the address of maintainer.
PR: ports/19504
Submitted by: Yasuhito FUTATSUKI <futatuki@debug.gr.jp> (maintainer)
Diffstat (limited to 'audio/cdrdao/Makefile')
-rw-r--r-- | audio/cdrdao/Makefile | 28 |
1 files changed, 2 insertions, 26 deletions
diff --git a/audio/cdrdao/Makefile b/audio/cdrdao/Makefile index 8b2dfb7cf6b8..a3c5f3acc742 100644 --- a/audio/cdrdao/Makefile +++ b/audio/cdrdao/Makefile @@ -24,41 +24,20 @@ MAN1= cdrdao.1 .include <bsd.port.pre.mk> -.if exists(${X11BASE}/include/gtk--.h) -XCDRDAO= yes -.endif - -.if defined(PACKAGE_BUILDING) -XCDRDAO= yes -.endif - -.if defined(XCDRDAO) -USE_NEWGCC= yes -LIB_DEPENDS+= gtkmm-1.2:${PORTSDIR}/x11-toolkits/gtk-- -MAN1+= xcdrdao.1 -PLIST=${PKGDIR}/PLIST.xcdrdao -.else CONFIGURE_ARGS= --disable-gtkmmtest -.endif .if defined(WITHOUT_SCGLIB) && ${OSVERSION} > 300000 CONFIGURE_ARGS+= --without-scglib .endif -.if defined(WITHOUT_PTHREADS) && ${OSVERSION} > 320000 +.if !defined(WITH_PTHREADS) && ${OSVERSION} > 320000 CONFIGURE_ARGS+= --without-posix-threads .endif pre-fetch: @${ECHO_MSG} "If you don't want to use Joerg Schilling's SCSI library," @${ECHO_MSG} "set WITHOUT_SCGLIB=yes." - @${ECHO_MSG} "If you don't want to use pthreads, set WITHOUT_PTHREADS=yes." -.if !defined(XCDRDAO) - @${ECHO_MSG} "To build the graphical X toc file editor, xcdrdao, type:" - @${ECHO_MSG} " make XCDRDAO=yes." -.else - @${ECHO_MSG} "Building with xcdrdao" -.endif + @${ECHO_MSG} "If you want to use pthreads, set WITH_PTHREADS=yes." .if ${MACHINE_ARCH} == "alpha" post-extract: @@ -68,9 +47,6 @@ post-extract: post-install: strip $(PREFIX)/bin/cdrdao -.if defined(XCDRDAO) - strip $(PREFIX)/bin/xcdrdao -.endif @${MKDIR} ${PREFIX}/share/doc/cdrdao .for i in COPYING CREDITS INSTALL README README.FreeBSD README.PlexDAE \ Release-1.1.0 Release-1.1.2 Release-1.1.3 |