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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
|
Source: efl
Section: libs
Priority: optional
Maintainer: Debian Pkg-e Team <pkg-e-devel@lists.alioth.debian.org>
Uploaders:
Albin Tonnerre <lutin@debian.org>,
Ross Vandegrift <rvandegrift@debian.org>,
Andreas Metzler <ametzler@debian.org>,
Build-Conflicts: systemctl
Build-Depends:
debhelper-compat (= 13),
libblkid-dev [linux-any],
libcurl4-openssl-dev,
libdbus-1-dev,
libedje-bin <cross>,
libeet-bin <cross>,
libelementary-bin <cross>,
libeolian-bin <cross>,
libfontconfig1-dev,
libfreetype6-dev,
libfribidi-dev,
libgbm-dev,
libgcrypt-dev,
libgif-dev,
libgles2-mesa-dev,
libglib2.0-dev,
libgstreamer-plugins-base1.0-dev,
libgstreamer1.0-dev,
libharfbuzz-dev,
libheif-dev,
libinput-dev,
libjpeg-dev,
liblua5.2-dev,
liblz4-dev,
libmount-dev [linux-any],
libopenjp2-7-dev,
libpixman-1-dev,
libpng-dev,
libpoppler-cpp-dev,
libpulse-dev,
libraw-dev,
librsvg2-dev,
libscim-dev,
libsndfile-dev,
libspectre-dev,
libssl-dev,
libsystemd-dev,
libtiff-dev,
libudev-dev [linux-any],
libunwind-dev [amd64 arm64 armel armhf hppa i386 ia64 mips mips64 mips64el mipsel powerpc powerpcspe ppc64 ppc64el sh4],
libvlc-dev,
libwayland-dev,
libwebp-dev,
libx11-dev,
libx11-xcb-dev,
libxcb-image0-dev,
libxcb-shm0-dev,
libxcb1-dev,
libxcomposite-dev,
libxcursor-dev,
libxdamage-dev,
libxext-dev,
libxi-dev,
libxinerama-dev,
libxkbcommon-x11-dev,
libxpm-dev,
libxrandr-dev,
libxrender-dev,
libxss-dev,
libxtst-dev,
mesa-common-dev,
meson,
pkg-config,
systemd,
wayland-protocols,
x11proto-xext-dev,
zlib1g-dev,
Build-Depends-Indep: doxygen, ghostscript, imagemagick, texlive-font-utils
Standards-Version: 4.5.0
Vcs-Git: https://salsa.debian.org/pkg-e-team/efl.git
Vcs-Browser: https://salsa.debian.org/pkg-e-team/efl
Homepage: https://www.enlightenment.org
Rules-Requires-Root: no
Package: libeina1a
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Conflicts: libeina0, libeina1
Breaks:
libecore-avahi1 (<= 1.23.3-8),
libecore-bin (<= ${source:Upstream-Version}),
libedje-bin (<= ${source:Upstream-Version}),
libeet-bin (<= ${source:Upstream-Version}),
libeet1 (<= 1.4.0~beta+1.4.0),
libeeze-bin (<= ${source:Upstream-Version}),
libefreet-bin (<= ${source:Upstream-Version}),
libeina-bin (<= ${source:Upstream-Version}),
libeina1 (<= 1.18.1-2),
libelementary-bin (<= ${source:Upstream-Version}),
libelementary-data (<= ${source:Upstream-Version}),
libelocation1 (<= 1.23.3-8),
libelua-bin (<= 1.26.2-2),
libelua1 (<= 1.26.2-2),
libembryo-bin (<= ${source:Upstream-Version}),
libemotion-players (<= 1.23.3-8),
libeolian-bin (<= ${source:Upstream-Version}),
libephysics1 (<= 1.23.3-8),
libethumb-client-bin (<= ${source:Upstream-Version}),
libevas-loaders (<= ${source:Upstream-Version}),
libevas-bin (<= 1.21.1-5),
libevas1-engines-drm (<= ${source:Upstream-Version}),
libevas1-engines-fb (<= ${source:Upstream-Version}),
libevas1-engines-wayland (<= ${source:Upstream-Version}),
libevas1-engines-x (<= ${source:Upstream-Version}),
Description: EFL optimized data types
The Eina library is a library which implements an API for data types
in an efficient way. It also provides some useful tools like opening
shared libraries, error management, type conversion, time accounting
and memory pools.
.
Please refer to the documentation for a list of included data types
and tools.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libeina-bin
Architecture: linux-any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL optimized data types - extra tools
The Eina library is a library which implements an API for data types
in an efficient way. It also provides some useful tools like opening
shared libraries, error management, type conversion, time accounting
and memory pools.
.
Please refer to the documentation for a list of included data types
and tools.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains some additional tools that may be useful for
debugging eina issues.
Package: libeet1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL file chunk reading/writing
Eet is a tiny library designed to write an arbitrary set of chunks of data to a
file and optionally compress each chunk (very much like a zip file) and allows
fast random-access reading of the file later on. It does not do zip as zip
itself has more complexity than needed, and it was much simpler to implement
this once here.
.
It's small, fast, and does a job. It's heavily commented and fully documented.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libeet-bin
Architecture: linux-any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL file chunk reading/writing - utilities
Eet is a tiny library designed to write an arbitrary set of chunks of data to a
file and optionally compress each chunk (very much like a zip file) and allows
fast random-access reading of the file later on. It does not do zip as zip
itself has more complexity than needed, and it was much simpler to implement
this once here.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains eet, an utility that allows you to extract, insert,
encode and decode config blobs created with libeet.
Package: libevas1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends:
libevas1-engines-x | libevas1-engine,
${misc:Depends},
${shlibs:Depends},
Recommends:
libevas-loaders,
libevas1-engines-drm,
libevas1-engines-fb,
libevas1-engines-wayland,
libevas1-engines-x,
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL advanced canvas library
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super- and sub-sampled scaled
images, alpha-blend objects and more.
.
It abstracts the graphics drawing characteristics of the display
system by implementing a canvas where graphical objects can be
created, manipulated, and modified. It then handles the rendering
pipeline in an optimal way for the underlying device in order to
minimize redraws, via a programmatically efficient API.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the core library and a set of image loaders
and/or savers for various formats: eet, gif, jpeg, png, svg, tiff and
xpm
Package: libevas1-engines-x
Architecture: linux-any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Replaces: libevas-engines, libevas-engines-extras
Provides: libevas1-engine, libevas1-engine-gl-x11, libevas1-engine-software-x11
Description: Evas module providing the X11 engines
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super- and sub-sampled scaled
images, alpha-blend objects and more.
.
It abstracts the graphics drawing characteristics of the display
system by implementing a canvas where graphical objects can be
created, manipulated, and modified. It then handles the rendering
pipeline in an optimal way for the underlying device in order to
minimize redraws, via a programmatically efficient API.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the X11-related Evas engine modules:
- GL/X11
- Software/X11 (Xlib/XCB)
Package: libevas1-engines-fb
Architecture: linux-any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Replaces: libevas-engines-extras, libevas1-engine-fb
Provides: libevas1-engine
Description: Evas module providing the Framebuffer engine
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super- and sub-sampled scaled
images, alpha-blend objects and more.
.
It abstracts the graphics drawing characteristics of the display
system by implementing a canvas where graphical objects can be
created, manipulated, and modified. It then handles the rendering
pipeline in an optimal way for the underlying device in order to
minimize redraws, via a programmatically efficient API.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the framebuffer Evas engine module.
Package: libevas1-engines-drm
Architecture: linux-any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Replaces: libevas-engines, libevas-engines-extras
Provides: libevas1-engine
Description: Evas module providing the DRM engine
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super- and sub-sampled scaled
images, alpha-blend objects and more.
.
It abstracts the graphics drawing characteristics of the display
system by implementing a canvas where graphical objects can be
created, manipulated, and modified. It then handles the rendering
pipeline in an optimal way for the underlying device in order to
minimize redraws, via a programmatically efficient API.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the DRM-related Evas engine modules.
Package: libevas1-engines-wayland
Architecture: linux-any
Multi-Arch: same
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks:
libeina1a (<< ${source:Upstream-Version}),
enlightenment (<< 0.24.0-1),
Replaces: libevas-engines, libevas-engines-extras
Provides: libevas1-engine
Description: Evas module providing the Wayland engine
Evas is a clean display canvas API for several target display systems
that can draw anti-aliased text, smooth super- and sub-sampled scaled
images, alpha-blend objects and more.
.
It abstracts the graphics drawing characteristics of the display
system by implementing a canvas where graphical objects can be
created, manipulated, and modified. It then handles the rendering
pipeline in an optimal way for the underlying device in order to
minimize redraws, via a programmatically efficient API.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Wayland-related Evas engine modules.
Package: libecore1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL core abstraction layer
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libecore-audio1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for audio playback and recording
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This package contains the Ecore wrapper and convenience functions for
audio playback and recording.
Package: libecore-con1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends:
libecore-bin (>= ${source:Upstream-Version}),
${misc:Depends},
${shlibs:Depends},
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for network connections
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore Connection Library, which provides
simple mechanisms for communications between programs using reliable
sockets.
Package: libecore-drm2-1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for DRM
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore wrapper and convenience functions for using
drm, virtual terminals.
Package: libecore-evas1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for the Evas wrapper
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore Evas wrapper functions.
Package: libecore-fb1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for frame buffer displays
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore frame buffer system functions.
Package: libecore-file1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for files and directories
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore File Library.
Package: libecore-imf1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for Input Method Framework
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore Input Method Framework module, and
the Evas helper functions for it.
Package: libecore-input1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for input devices
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore input device module.
Package: libecore-ipc1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for inter-process communication
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore inter-process communication functions.
Package: libecore-wl2-1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for Wayland displays
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This package contains the Ecore wrapper and convenience functions for
using Wayland.
Package: libecore-x1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: Ecore functions for X Window System displays
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the Ecore wrapper and convenience functions for using
the X Window System.
Package: libecore-bin
Architecture: linux-any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL core abstraction layer - utilities
Ecore is a library of convenience functions. It provides abstractions
for handling timers selections, Xdnd, event loops, and much
more. Much of Ecore's functionality is implemented in external
modules.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains code generation utilities used in building EFL
apps and a libproxy abstraction binary used by ecore_con.
Package: libector1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL vector graphics capabilities
Ector provides a new retained rendering library that is used by Evas
to provide Evas_Object_VG. This is a new Evas_Object that provides a
vector graphics scene graph following the SVG specification. It will
be considered a bug if some behaviour does not follow the SVG
standard. Evas_Object_VG provides 3 kind of objects for now: shape,
as well as linear and radial gradients.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package provides the libector1 library.
Package: libefl-all-dev
Section: libdevel
Architecture: linux-any
Pre-Depends: ${misc:Pre-Depends}
Depends:
libblkid-dev [linux-any],
libcurl4-openssl-dev,
libdbus-1-dev,
libecore-audio1 (= ${binary:Version}),
libecore-con1 (= ${binary:Version}),
libecore-drm2-1 (= ${binary:Version}),
libecore-evas1 (= ${binary:Version}),
libecore-fb1 (= ${binary:Version}) [linux-any],
libecore-file1 (= ${binary:Version}),
libecore-imf1 (= ${binary:Version}),
libecore-input1 (= ${binary:Version}),
libecore-ipc1 (= ${binary:Version}),
libecore-wl2-1 (= ${binary:Version}),
libecore-x1 (= ${binary:Version}),
libecore1 (= ${binary:Version}),
libector1 (= ${binary:Version}),
libedje-bin (= ${binary:Version}),
libedje1 (= ${binary:Version}),
libeet1 (= ${binary:Version}),
libeeze1 (= ${binary:Version}) [linux-any],
libefreet1a (= ${binary:Version}),
libeina1a (= ${binary:Version}),
libeio1 (= ${binary:Version}),
libelementary1 (= ${binary:Version}),
libelput1 (= ${binary:Version}),
libembryo1 (= ${binary:Version}),
libemile1 (= ${binary:Version}),
libemotion1 (= ${binary:Version}),
libeolian-bin (= ${binary:Version}),
libeolian1 (= ${binary:Version}),
libethumb-client1 (= ${binary:Version}),
libethumb1 (= ${binary:Version}),
libevas1 (= ${binary:Version}),
libfontconfig1-dev,
libfreetype6-dev,
libfribidi-dev,
libgbm-dev,
libglib2.0-dev,
libgstreamer-plugins-base1.0-dev,
libgstreamer1.0-dev,
libharfbuzz-dev,
libinput-dev,
libjpeg-dev,
liblua5.2-dev,
liblz4-dev,
libpng-dev,
libmount-dev [linux-any],
libpulse-dev,
libsndfile-dev,
libssl-dev,
libsystemd-dev,
libudev-dev [linux-any],
libunwind-dev [amd64 arm64 armel armhf hppa i386 ia64 mips mips64 mips64el mipsel powerpc powerpcspe ppc64 ppc64el sh4],
libwayland-dev,
libx11-dev,
libx11-xcb-dev,
libxcb1-dev,
libxcomposite-dev,
libxcursor-dev,
libxdamage-dev,
libxext-dev,
libxi-dev,
libxinerama-dev,
libxkbcommon-x11-dev,
libxrandr-dev,
libxrender-dev,
libxss-dev,
libxtst-dev,
mesa-common-dev,
pkg-config,
python3,
x11proto-xext-dev,
zlib1g-dev,
${misc:Depends},
${shlibs:Depends},
Breaks:
libecore-dev (<< 1.20.5-1),
libector-dev (<< 1.20.5-1),
libedje-dev (<< 1.20.5-1),
libeet-dev (<< 1.20.5-1),
libeeze-dev (<< 1.20.5-1),
libefreet-dev (<< 1.20.5-1),
libeina-dev (<< 1.20.5-1),
libeio-dev (<< 1.20.5-1),
libelementary-dev (<< 1.20.5-1),
libelput-dev (<< 1.20.5-1),
libelua-dev (<< 1.20.5-1),
libembryo-dev (<< 1.20.5-1),
libemile-dev (<< 1.20.5-1),
libemotion-dev (<< 1.20.5-1),
libeolian-dev (<< 1.20.5-1),
libethumb-dev (<< 1.20.5-1),
libevas-dev (<< 1.20.5-1),
Replaces:
libecore-dev (<< 1.20.5-1),
libector-dev (<< 1.20.5-1),
libedje-dev (<< 1.20.5-1),
libeet-dev (<< 1.20.5-1),
libeeze-dev (<< 1.20.5-1),
libefreet-dev (<< 1.20.5-1),
libeina-dev (<< 1.20.5-1),
libeio-dev (<< 1.20.5-1),
libelementary-dev (<< 1.20.5-1),
libelput-dev (<< 1.20.5-1),
libelua-dev (<< 1.20.5-1),
libembryo-dev (<< 1.20.5-1),
libemile-dev (<< 1.20.5-1),
libemotion-dev (<< 1.20.5-1),
libeolian-dev (<< 1.20.5-1),
libethumb-dev (<< 1.20.5-1),
libevas-dev (<< 1.20.5-1),
Recommends: efl-doc, libeina-bin, libelementary-bin
Description: Enlightenment Foundation Libraries development files
The Enlightenment Foundation Libraries (EFL) is a stack of libraries
providing a wide degree of functionality. Originally written to
support development of the Enlightenment window manager, the
libraries have increasingly been used in embedded systems.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package provides the development files for all of EFL.
Package: libefreet1a
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libefreet1 (<= 1.8.4-1), libeina1a (<< ${source:Upstream-Version})
Description: EFL freedesktop.org spec implementations
Efreet is a library designed to help apps work several of the
Freedesktop.org standards regarding Icons, Desktop files and
Menus. To that end it implements the following specifications:
- XDG Base Directory Specification
- Icon Theme Specification
- Desktop Entry Specification
- Desktop Menu Specification
- FDO URI Specification
- Shared Mime Info Specification
- Trash Specification
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libefreet-bin
Architecture: linux-any
Multi-arch: foreign
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL helper program to create efreet data caches
Efreet is a library designed to help apps work several of the
Freedesktop.org standards regarding Icons, Desktop files and
Menus. To that end it implements the following specifications:
- XDG Base Directory Specification
- Icon Theme Specification
- Desktop Entry Specification
- Desktop Menu Specification
- FDO URI Specification
- Shared Mime Info Specification
- Trash Specification
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package provides the D-Bus activated helper binary and the
associated service file that are internally used by libefreet.
Package: libembryo1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Suggests: libembryo-bin
Description: EFL SMALL-based abstract machine (AMX) bytecode interpreter
Embryo is a tiny library designed to interpret limited Small programs
compiled by the included compiler, embryo_cc. It is mostly a cleaned
up and smaller version of the original Small abstract machine. The
compiler is mostly untouched.
.
Refer to the EFL documentation for an introduction to SMALL. See
https://www.compuphase.com/pawn/pawn.htm for details on PAWN, the
upstream successor to SMALL.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libembryo-bin
Section: devel
Architecture: linux-any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL SMALL-based abstract machine (AMX) compiler
Embryo is a tiny library designed to interpret limited Small programs
compiled by the included compiler, embryo_cc. It is mostly a cleaned
up and smaller version of the original Small abstract machine. The
compiler is mostly untouched.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the embryo compiler: embryo_cc.
Package: libedje-bin
Architecture: linux-any
Multi-Arch: foreign
Section: devel
Depends:
libembryo-bin (>= 0.9.9.050+svn20090204),
${misc:Depends},
${shlibs:Depends},
Description: EFL layout and animation tools - utilities
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains binaries for the creation & debugging of edje
themes.
Package: libedje1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version}), libelementary1 (<= 1.7.7-1)
Suggests: libedje-bin (= ${binary:Version})
Description: EFL layout and animation tools
Edje is a graphical layout and animation library for animated resizable,
compressed and scalable themes. It is the theming engine behind
Enlightenment.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libeio1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL non-blocking, threaded I/O
Eio library is a library that implements an API for asynchronous
input/output. It provides non-blocking IO by using thread for all
operations that may block. It should integrate all the
features/functions of Ecore_File that could block.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libeeze1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL udev device manipulation
Eeze is a library for manipulating devices through udev with a simple
and fast api. It interfaces directly with libudev, avoiding such
middleman daemons as udisks/upower or hal, to immediately gather
device information the instant it becomes known to the system.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libeeze-bin
Architecture: linux-any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL udev device manipulation - utilities
Eeze is a library for manipulating devices through udev with a simple
and fast api. It interfaces directly with libudev, avoiding such
middleman daemons as udisks/upower or hal, to immediately gather
device information the instant it becomes known to the system.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains command-line utilities that allow mounting,
scanning, and unmounting devices with eeze.
Package: libemile1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL compression and encryption
Emile provides a library to bring together serialization, compression
and ciphering. It is a low-level library and can be used by anything
above Eina.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libemotion1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL media object functionality
Emotion is a library that allows playing audio and video files, using
one of its backends (GStreamer, xine or generic shm player).
.
It is integrated into Ecore through its mainloop, and is transparent
to the user of the library how the decoding of audio and video is
being done. Once the objects are created, the user can set callbacks
to the specific events and set options to this object, all in the
main loop.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libethumb1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL for thumbnail image creation
Ethumb uses Evas to generate thumbnail images of given files. The API allows
great customization of the generated files and also helps complying to
FreeDesktop.Org Thumbnail Specification.
.
It also provide a D-Bus server to reduce the performance costs of
thumbnail generation and management. Ethumb-Client creates thumbnails
by communicating with a thumbnail generation server using standard
D-Bus protocol.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the D-Bus server library.
Package: libethumb-client1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL client for ethumb
Ethumb uses Evas to generate thumbnail images of given files. The API allows
great customization of the generated files and also helps complying to
FreeDesktop.Org Thumbnail Specification.
.
It also provide a D-Bus server to reduce the performance costs of
thumbnail generation and management. Ethumb-Client creates thumbnails
by communicating with a thumbnail generation server using standard
D-Bus protocol.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the D-Bus client library.
Package: libethumb-client-bin
Architecture: linux-any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: EFL ethumb helper binary
Ethumb uses Evas to generate thumbnail images of given files. The API allows
great customization of the generated files and also helps complying to
FreeDesktop.Org Thumbnail Specification.
.
It also provide a D-Bus server to reduce the performance costs of
thumbnail generation and management. Ethumb-Client creates thumbnails
by communicating with a thumbnail generation server using standard
D-Bus protocol.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package provides the ethumbd helper binary and the associated D-Bus
service file that are internally used by libethumb-client.
Package: libeolian-bin
Architecture: linux-any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libefl-all-dev (<< 1.23.3-7)
Replaces: libefl-all-dev (<< 1.23.3-7)
Description: EFL object parser and C code generator - C code generator
Eolian parses Enlightenment's meta-data (.eo) files and can then
generate C code along with header files.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the C code generator for Eo, eolian_gen.
Package: libeolian1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL object parser and C code generator
Eolian parses Enlightenment's meta-data (.eo) files and can then
generate C code along with header files.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libelput1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libeina1a (<< ${source:Upstream-Version})
Description: EFL abstraction for libinput
Elput abstraction for the libinput library. It can be used by
various other subsystems (ecore_fb, ecore_drm, etc) to handle
interfacing with libinput without having to duplicate the code in
each subsystem.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: efl-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Depends: ${misc:Depends}
Breaks:
libecore-doc (<= 1.8.3),
libedje-doc (<= 1.8.3),
libeet-doc (<= 1.8.3),
libefreet-doc (<= 1.8.3),
libeina-doc (<= 1.8.3),
libeio-doc (<= 1.8.3),
libembryo-doc (<= 1.8.3),
libevas-doc (<= 1.8.3),
Replaces:
libecore-doc (<= 1.8.3),
libedje-doc (<= 1.8.3),
libeet-doc (<= 1.8.3),
libefreet-doc (<= 1.8.3),
libeina-doc (<= 1.8.3),
libeio-doc (<= 1.8.3),
libembryo-doc (<= 1.8.3),
libevas-doc (<= 1.8.3),
Description: Documentation for the Enlightenment Foundation Libraries
The Enlightenment Foundation Libraries (EFL) is a set of libraries
providing building blocks used in the Enlightenment window manager.
This package contains the Doxygen-generated HTML documentation and
examples for the API of the EFL.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libelementary1
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Breaks: libeina1 (<< ${source:Upstream-Version}), libelementary2 (<< 1.15)
Replaces: libelementary2 (<< 1.15)
Depends:
libelementary-data (= ${source:Version}),
${misc:Depends},
${shlibs:Depends},
Recommends:
libelementary-bin,
Description: EFL widget set
Elementary is a widget set based on the Enlightenment Foundation
Libraries, primarily aimed at creating graphical user interfaces for
mobile and embedded devices.
.
This is part of the Enlightenment Foundation Libraries (EFL).
Package: libelementary-bin
Architecture: linux-any
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}
Breaks: libefl-all-dev (<= 1.23.3-7)
Replaces: libefl-all-dev (<= 1.23.3-7)
Description: EFL widget set - helper programs
Elementary is a widget set based on the Enlightenment Foundation
Libraries, primarily aimed at creating graphical user interfaces for
mobile and embedded devices.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains the elementary_config program and tools to
assist in the development & debugging of elementary programs.
Package: libelementary-data
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}
Description: EFL widget set - data files
Elementary is a widget set based on the Enlightenment Foundation
Libraries, primarily aimed at creating graphical user interfaces for
mobile and embedded devices.
.
This is part of the Enlightenment Foundation Libraries (EFL).
.
This package contains graphics and styles needed by applications
using elementary.
Package: libevas-loaders
Architecture: linux-any
Multi-Arch: same
Pre-Depends: ${misc:Pre-Depends}
Depends: ${misc:Depends}, ${shlibs:Depends}
Replaces: libevas1 (<< 1.7.7-5)
Description: EFL additional loaders for Evas
This package contains programs that allow Evas to load many image and
document formats for which it has no built-in support, including:
- XCF
- SVG
- PS
- RAW
- LibreOffice
.
This is part of the Enlightenment Foundation Libraries (EFL).
|