├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin ├── eni-rdp-wrapper └── eve-ng-integration ├── data ├── eni-rdp-wrapper.desktop ├── eni-rdp-wrapper.xml └── eve-ng-integration.desktop ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── postinst ├── postrm ├── rules ├── source │ └── format └── watch ├── demo.gif └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | *.deb 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/README.md -------------------------------------------------------------------------------- /bin/eni-rdp-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/bin/eni-rdp-wrapper -------------------------------------------------------------------------------- /bin/eve-ng-integration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/bin/eve-ng-integration -------------------------------------------------------------------------------- /data/eni-rdp-wrapper.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/data/eni-rdp-wrapper.desktop -------------------------------------------------------------------------------- /data/eni-rdp-wrapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/data/eni-rdp-wrapper.xml -------------------------------------------------------------------------------- /data/eve-ng-integration.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/data/eve-ng-integration.desktop -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | LICENSE 2 | -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/debian/watch -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/demo.gif -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartFinn/eve-ng-integration/HEAD/install.sh --------------------------------------------------------------------------------