From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51159) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fk4dt-0000ey-PE for guix-patches@gnu.org; Mon, 30 Jul 2018 05:39:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fk4dq-0000WX-Lp for guix-patches@gnu.org; Mon, 30 Jul 2018 05:39:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:57572) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fk4dq-0000WM-Gk for guix-patches@gnu.org; Mon, 30 Jul 2018 05:39:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fk4dq-00029i-4w for guix-patches@gnu.org; Mon, 30 Jul 2018 05:39:02 -0400 Subject: [bug#32311] [PATCH] gnu: Add ephoto. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50865) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fk4cq-0000Dd-7h for guix-patches@gnu.org; Mon, 30 Jul 2018 05:38:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fk4cn-00088r-29 for guix-patches@gnu.org; Mon, 30 Jul 2018 05:38:00 -0400 Received: from flashner.co.il ([178.62.234.194]:50146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fk4cf-000847-Og for guix-patches@gnu.org; Mon, 30 Jul 2018 05:37:56 -0400 From: Efraim Flashner Date: Mon, 30 Jul 2018 12:37:44 +0300 Message-Id: <20180730093744.1157-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32311@debbugs.gnu.org Cc: Efraim Flashner * gnu/packages/enlightenment.scm (ephoto): New variable. --- gnu/packages/enlightenment.scm | 47 ++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.= scm index cff5ab14a..15ec49279 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -421,3 +421,50 @@ and in creating applications based on the Enlightenm= ent Foundation Library suite "Simple PDF viewer based on the Enlightenment Foundation Libraries.= ") (home-page "https://github.com/kaihu/lekha") (license license:gpl3+))) + +(define-public ephoto + (package + (name "ephoto") + (version "1.5") + (source + (origin + (method url-fetch) + (uri (list (string-append "http://www.smhouston.us/stuff/ephoto-= " + version ".tar.xz") + (string-append "https://download.enlightenment.org/re= l/" + "apps/ephoto/ephoto-" version ".tar.xz= "))) + (sha256 + (base32 + "04kli43sfsy6s660g13pjc0kjmgdcmq8m4qh02vvpcwv60mf9mgz")))) + (build-system gnu-build-system) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'set-home-directory + ;; FATAL: Cannot create run dir '/homeless-shelter/.run' - er= rno=3D2 + (lambda _ (setenv "HOME" "/tmp") #t))))) + (native-inputs + `(("check" ,check) + ("pkg-config" ,pkg-config))) + (inputs + `(("efl" ,efl))) + (home-page "http://smhouston.us/ephoto/") + (synopsis "EFL image viewer/editor/manipulator/slideshow creator") + (description "Ephoto is an image viewer and editor written using the +@dfn{Enlightenment Foundation Libraries} (EFL). It focuses on simplicit= y and ease +of use, while taking advantage of the speed and small footprint the EFL = provide. + +Ephoto=E2=80=99s features include: +@enumerate +@item Browsing the filesystem and displaying images in an easy to use gr= id view. +@item Browsing images in a single image view format. +@item Viewing images in a slideshow. +@item Editing your image with features such as cropping, auto enhance, +blurring, sharpening, brightness/contrast/gamma adjustments, hue/saturat= ion/value +adjustments, and color level adjustment. +@item Applying artistic filters to your image such as black and white an= d old photo. +@item Drag And Drop along with file operations to easy maintain your pho= to directories. +@end enumerate\n") + (license (list + license:bsd-2 ; Ephoto's thumbnailing code + license:bsd-3)))) --=20 2.18.0