From 9b2075d9b89fc628c447fbb98f43ef72e4a9c81d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 16:17:43 -0500 Subject: Initial import from old SVN repository Note that only the Debian and Ubuntu folders were preserved --- .../lucid_automake/applications/kvirc/debian/rules | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100755 ubuntu/lucid_automake/applications/kvirc/debian/rules (limited to 'ubuntu/lucid_automake/applications/kvirc/debian/rules') diff --git a/ubuntu/lucid_automake/applications/kvirc/debian/rules b/ubuntu/lucid_automake/applications/kvirc/debian/rules new file mode 100755 index 000000000..99cd63353 --- /dev/null +++ b/ubuntu/lucid_automake/applications/kvirc/debian/rules @@ -0,0 +1,97 @@ +#! /usr/bin/make -f +# +# Build script for the KVIrc 3 debian package. +# Using Common Debian Build System (CDBS). +# + + # + # Update Makefiles + # + # This is done outside of debian/rules now, so that Debian autobuilders + # will all be building the same source, with no deviation because they + # might have an outdated autotools-dev version. +common-configure-impl:: +# ./autogen.sh + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +DEB_CONFIGURE_INCLUDEDIR := /opt/kde3/include/kde +DEB_CONFIGURE_MANDIR := /opt/kde3/share/man +DEB_CONFIGURE_PREFIX := /opt/kde3 +DEB_CONFIGURE_INFODIR := /opt/kde3/share/info + +cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) + + # + # Specify extra configure options: + # +DEB_CONFIGURE_EXTRA_FLAGS := --with-fno-rtti --with-aa-fonts --with-big-channels +DEB_CONFIGURE_EXTRA_FLAGS += --enable-perl --with-pic --enable-wall --mandir=$(DEB_CONFIGURE_MANDIR) +DEB_CONFIGURE_EXTRA_FLAGS += --disable-rpath --prefix=/opt/kde3 + + # + # If debug is specified, turn it on + # +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + DEB_CONFIGURE_EXTRA_FLAGS += --enable-debug --with-memory-profile --with-memory-checks +else + #DEB_CONFIGURE_EXTRA_FLAGS += --enable-optimisation=3 + ifneq (,$(findstring 86,$(DEB_BUILD_GNU_CPU))) + # DEB_CONFIGURE_EXTRA_FLAGS += --enable-pipes --enable-objprelink + DEB_CONFIGURE_EXTRA_FLAGS +=--with-ix86-asm + endif +endif + + # + # Don't compress these files + # +DEB_COMPRESS_EXCLUDE := .kvs + + # + # Run dh_shlibdeps with the correct options + # +DEB_SHLIBDEPS_INCLUDE_kvirc-kde3 := debian/kvirc-kde3$(DEB_CONFIGURE_PREFIX)/lib +DEB_SHLIBDEPS_LIBRARY_kvirc-kde3 := kvirc-kde3 + + # + # Documentation to include for each package + # +DEB_INSTALL_DOCS_kvirc-kde3 := FAQ README TODO +DEB_INSTALL_DOCS_kvirc-kde3-dev := doc/scriptexamples +DEB_INSTALL_DOCS_ALL := -XCVS -X.cvsignore + +common-install-indep:: + # + # Change the name of the COPYING file to appease lintian + # + mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc/3.4/license/COPYING \ + $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc/3.4/license/EULA + # + # Move KDE service files to a better position + # +# mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/services \ +# $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc/3.4/ + +# mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc-kde3 + mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc/3.4/applnk $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/ + mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/kvirc/3.4/icons $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/ + mkdir -p $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/applnk/Internet + mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/applnk/kvirc.desktop $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/applnk/Internet/kvirc.desktop + mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/icons $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/hicolor + mkdir -p $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/icons + mv $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/hicolor $(CURDIR)/debian/tmp/$(DEB_CONFIGURE_PREFIX)/share/icons/ + +post-patches:: debian/stamp-bootstrap + +debian/stamp-bootstrap: + ! [ -f /usr/share/libtool/ltmain.sh ] || \ + cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh + ! [ -f /usr/share/libtool/config/ltmain.sh ] || \ + cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + + ./autogen.sh + touch debian/stamp-bootstrap + -- cgit v1.2.3