freebsd-ports/audio/din/Makefile
Santhosh Raju 270d325584 audio/din: Update to 55
Changes since 54:

DIN Is Noise 55:
  /*
      an overhaul of Gravity

      as before, you can click and move the base or
      the tip of the gravity arrow to adjust its position,
      direction and strength.

      to (auto) animate the gravity arrow:

        assign a drone to base of gravity
        assign another drone to tip of gravity

        move or visual FM / AM modulate one or both these drones
        and gravity moves accordingly.

        animating gravity influences the trajectory of launched
        drones :)

      click 'Base to manual' and 'Tip to manual' to detach
      assigned drones from base and the tip respectively.

      you can now manually edit the base and tip again.

      click 'Select base', 'Select tip' or 'Select both'
      to select the assigned drones. Useful for moving,
      for visual AM/FM, to mute them etc.

      eg., you could mute the assigned drones by clicking
      'Select both' and then Menu > Drone Tools > Mute

  /*

  /* adjust position/phase of visual drone modulation (AM and FM)

      Menu > Drone Params > AM Position
      Menu > Drone Params > FM Position

      eg., at 0 position with AM and FM BPMs equal, the trail/path
      of the modulating drones is elliptical.

  /* set AM BPM to FM BPM of drones and vice-versa
  /* flip velocity direction of launched drone with respect to the launcher
     if -ve flag is set in drone velocity defaults
  /* opacity parameter for oscilloscope
  * optimised oscilloscope
    * faster sample add
    * faster drawing
  * changed shape of drone handles
  * optimised snap lines drawing on curve editors
  ! fixed OpenGL drawing bugs for affected OpenGL drivers on Windows !
    ! in oscilloscope !
    ! in waveform display on waveform editors !
    ! when hz/vol displayed on drones !
  ! fixed crash if drones as they are fading in when creating drone mesh
    are modulated or moved !
2022-10-01 12:03:42 +02:00

37 lines
850 B
Makefile

PORTNAME= din
PORTVERSION= 55
CATEGORIES= audio
MASTER_SITES= https://archive.org/download/dinisnoise_source_code/
MAINTAINER= fox@FreeBSD.org
COMMENT= Open source, cross-platform sound synthesizer
WWW= https://dinisnoise.org/
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libasound.so:audio/alsa-lib \
libboost_system.so:devel/boost-libs \
libjack.so:audio/jack
USES= autoreconf gl gnome sdl tcl:86+ xorg
USE_GL= gl
USE_SDL= sdl
GNU_CONFIGURE= yes
OPTIONS_SINGLE= BACKEND
OPTIONS_SINGLE_BACKEND= ALSA JACK
OPTIONS_DEFAULT= JACK
JACK_DESC= Uses JACK sound server
ALSA_DESC= Uses ALSA sound server
ALSA_CXXFLAGS+= -D__LINUX_ALSA__
JACK_CXXFLAGS+= -D__UNIX_JACK__
CXXFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/tcl${TCL_VER}
LIBS+= -L${LOCALBASE}/lib -ltcl${TCL_SHLIB_VER} -lthr -ljack
.include <bsd.port.mk>