1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
SUBDIRS = firetalk libltdl secs src CYGWIN-PATCHES
man_MANS = doc/naim.1 doc/nicq.1 doc/nirc.1 doc/nlily.1
pkgdoc_DATA = FAQ README
EXTRA_DIST = \
BUGS \
README \
README.es \
configure \
contrib/extractbuddy.sh \
doc/course.hlp \
doc/naim.hlp \
${man_MANS} \
${pkgdoc_DATA}
bin_SCRIPTS = \
contrib/extractbuddy.sh
pkginclude_HEADERS = include/naim/naim.h include/naim/modutil.h include/naim/secs.h
snapshottime = `date +%Y-%m-%d-%H%M`
snap: README
echo "#define NAIM_SNAPSHOT \"-${snapshottime} (development snapshot)\"" > ${top_srcdir}/src/snapshot.h
make dist-bzip2 distdir=$(PACKAGE)-$(VERSION)-${snapshottime}
release: README
echo "#define NAIM_SNAPSHOT \"\"" > ${top_srcdir}/src/snapshot.h
make dist-bzip2
README: ${srcdir}/doc/naim.1
PAGER="cat -v" man ${srcdir}/doc/naim.1 | sed 's/.\^.//g' > README
tarball: tgz
tgz:
mkdir "${top_builddir}/tmp"
make install-strip DESTDIR="`cd ${top_builddir}/tmp; pwd`"
(cd "${top_builddir}/tmp"; $(AMTAR) cf - --owner 0 --group 0 usr | GZIP=$(GZIP_ENV) gzip -c >../${pkgtarball})
rm -rf "${top_builddir}/tmp"
pkgtbz2 = `echo ${pkgtarball} | sed 's/gz$$/bz2/'`
tbz2:
mkdir "${top_builddir}/tmp"
make install-strip DESTDIR="`cd ${top_builddir}/tmp; pwd`"
(cd "${top_builddir}/tmp"; $(AMTAR) cf - --owner 0 --group 0 usr | bzip2 -9 -c >../${pkgtbz2})
rm -rf "${top_builddir}/tmp"
CYGREL ?= 1
Cygwin: cyg
cyg: dist-bzip2 tbz2
mkdir "${top_builddir}/Cygwin"
mv $(distdir).tar.bz2 "${top_builddir}/Cygwin"
printf "">"${top_builddir}/Cygwin"/$(distdir)-${CYGREL}.patch
echo "(bunzip2 -c -k $(distdir).tar.bz2 | tar xvf -) && cd $(distdir) && patch -p1 <../$(distdir)-${CYGREL}.patch && ./configure --prefix=/usr && make cyg" >"${top_builddir}/Cygwin"/$(distdir)-${CYGREL}.sh
chmod a+x "${top_builddir}/Cygwin"/$(distdir)-${CYGREL}.sh
(cd "${top_builddir}/Cygwin"; $(AMTAR) cf - --owner 0 --group 0 $(distdir).tar.bz2 $(distdir)-${CYGREL}.patch $(distdir)-${CYGREL}.sh | bzip2 -9 -c >$(distdir)-${CYGREL}-src.tar.bz2)
(cd "${top_builddir}/Cygwin"; rm $(distdir).tar.bz2 $(distdir)-${CYGREL}.patch $(distdir)-${CYGREL}.sh)
mv ${pkgtbz2} "${top_builddir}/Cygwin/$(distdir)-${CYGREL}.tar.bz2"
echo "# This file is generated by make cyg, do not edit directly." >>"${top_builddir}/Cygwin"/setup.hint
echo "@ naim" >>"${top_builddir}/Cygwin"/setup.hint
echo "sdesc: \"Console AIM, ICQ, IRC, and Lily client\"" >>"${top_builddir}/Cygwin"/setup.hint
echo "ldesc: \"Console client for AOL Instant Messenger, ICQ, Internet Relay Chat, and The lily CMC\"" >>"${top_builddir}/Cygwin"/setup.hint
echo "requires: libncurses7 cygwin" >>"${top_builddir}/Cygwin"/setup.hint
echo "category: Net Web" >>"${top_builddir}/Cygwin"/setup.hint
|