diff --git a/Makefile b/Makefile index 902be56..02264bf 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BEE_VERSION = 1.2.21 +BEE_VERSION = 1.2.22 CC=gcc CFLAGS=-Wall -g @@ -54,6 +54,7 @@ PROGRAMS_C+=beeversion PROGRAMS_SHELL+=bee PROGRAMS_SHELL+=beefind +PROGRAMS_SHELL+=beeissue PROGRAMS_SHELL+=beesh HELPER_BEE_SHELL+=bee-cache diff --git a/src/beeissue.sh.in b/src/beeissue.sh.in new file mode 100644 index 0000000..75d436e --- /dev/null +++ b/src/beeissue.sh.in @@ -0,0 +1,88 @@ +#!/bin/bash +# +# +# Copyright (C) 2009-2016 +# Tobias Dreyer +# Marius Tolzmann +# and other bee developers +# +# This file is part of bee. +# +# bee is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +BEE_VERSION="@BEE_VERSION@" + +: ${BEE_SYSCONFDIR:=@SYSCONFDIR@} +: ${BEE_DEFCONFDIR:=@DEFCONFDIR@} +: ${BEE_DATADIR:=@DATADIR@} +: ${BEE_LIBDIR:=@LIBDIR@} +: ${BEE_LIBEXECDIR:=@LIBEXECDIR@} +: ${BEE_BINDIR:=@BINDIR@} + +. ${BEE_LIBEXECDIR}/bee/beelib.config.sh + +: ${BEEGETOPT:=${BEE_BINDIR}/beegetopt} + +function usage() { + cat <