diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-04-26 12:50:19 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-04-26 12:50:19 +0000 |
commit | f6a7b5a10baec0c091e94a690bf7a971c27f67d8 (patch) | |
tree | 5df4d53bd01d212b17d642c8c49d98a9dea54ede /net-im/imcom/files | |
parent | Keyword ~arm and ~mips. Bug #546478. (diff) | |
download | gentoo-2-f6a7b5a10baec0c091e94a690bf7a971c27f67d8.tar.gz gentoo-2-f6a7b5a10baec0c091e94a690bf7a971c27f67d8.tar.bz2 gentoo-2-f6a7b5a10baec0c091e94a690bf7a971c27f67d8.zip |
Remove masked for removal package
Diffstat (limited to 'net-im/imcom/files')
-rw-r--r-- | net-im/imcom/files/Makefile-1.31 | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-im/imcom/files/Makefile-1.31 b/net-im/imcom/files/Makefile-1.31 deleted file mode 100644 index 136ec54388fe..000000000000 --- a/net-im/imcom/files/Makefile-1.31 +++ /dev/null @@ -1,48 +0,0 @@ -prefix= ${DESTDIR}/usr -exec_prefix = ${prefix} -bindir = ${exec_prefix}/bin -datadir = ${prefix}/share -docdir = ${prefix}/share/imcom/docs -mandir = ${prefix}/man - -all: - find ./ -type f -exec chmod a-x '{}' ';' - chmod +x imcom CLI.py LogHandler.py AccountCreator.py - -install: install-bin install-doc - -install-bin: install-modules - install -d -m 0755 ${bindir} - install -m 0755 imcom ${bindir} - -install-modules: - install -d -m 0755 ${datadir}/imcom - install -d -m 0755 ${datadir}/imcom/modules - install -m 0644 *.py ${datadir}/imcom - install -m 0644 modules/*.py ${datadir}/imcom/modules - install -m 0755 CLI.py LogHandler.py AccountCreator.py ${datadir}/imcom - -install-doc: - install -d -m 0755 ${docdir} - install -d -m 0755 ${mandir}/man1 - install -m 0755 docs/*.html ${docdir} - install -m 0755 CONTRIBUTORS LICENSE README README.autostatus TODO WHATSNEW ${docdir} - install -m 0755 docs/imcom.1 ${mandir}/man1/imcom.1 - - -uninstall: - rm -rf ${docdir} - rm -rf ${datadir}/imcom - rm -f ${bindir}/imcom - rm -f ${mandir}/man1/imcom.1 - -clean: - rm -f config.status config.log config.cache *.pyc - -distclean: clean - rm -rf CVS docs/CVS autom4te.cache - rm -f imcom Makefile - chmod a-x CLI.py LogHandler.py AccountCreator.py - rm -f *~ .#* - -.PHONY: distclean clean unstall install all install-modules install-bin install-doc |